Python 3 Tutorials: List Methods Extend vs Append

Поділитися
Вставка
  • Опубліковано 3 гру 2024

КОМЕНТАРІ • 5

  • @jamiehosmer1481
    @jamiehosmer1481 3 роки тому

    "In this video aimed at beginners...." I have to say, though I wouldn't characterize myself as a beginner, I had somehow missed this entire distinction of extend vs apppend until now. This is the second vid of yours I've watched -- recommended by the first (from 2017) and didn't blink deciding to subscribe. You earned it! You do a fantastic job of explaining a simple topic we need to know with examples that are easy to understand, all the while staying quite succinct and wasting no time. Thanks so much!

    • @PyMoondra
      @PyMoondra  3 роки тому

      Thank you so much for the kind words =)

  • @akiratoriyama1320
    @akiratoriyama1320 4 роки тому

    Those tiny videos, where you look in depth for small python parts are the best!! Usually we check the code fast on google, do our project and don't pay attention. So you bring the attention to us!! Thanks!! Great concept!!

    • @PyMoondra
      @PyMoondra  4 роки тому +1

      Thanks! I am trying to make videos on things that stumped me or currently are stumping me when I am working on personal projects.

  • @liri1189
    @liri1189 2 роки тому

    Why is this printing None?
    a = ['aaa', 2, 3]
    b = [4, 5, 'bbb']
    result = a.extend(b)
    print(result)