Python Lists & Tuples for Beginners | Python tutorial

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

КОМЕНТАРІ • 38

  • @xyzxyz6095
    @xyzxyz6095 2 місяці тому

    Absolutely AWESOME pedagogy, Sir Dave. Salutations from France.

  • @delta13dek
    @delta13dek 5 місяців тому

    Great lesson! I do want to mention something about sorting.... and call me out if I am mistaken. You can use users.sort(key=str.upper) as well to organize lowercase data. Also, none of the key= is necessary if the change is AFTER the .sort() - only before.

  • @ahmad-murery
    @ahmad-murery Рік тому +2

    I recently couldn't comment on your videos, YT kept deleting them directly after submit,
    Just wanted to say it's a nice video as usual, so thanks 💯
    BTW, 30:58 you can hit ctrl + space to bring the IntelliSense list back

  • @gredhawk
    @gredhawk Місяць тому

    These lessons are so good, Thanks so much. Question how does one remember all the ins and outs of the Python commands? I wait a day and try to remember how you showed the commands to accomplish things and I completely forget what you said and have to go back to see what you said. Very Frustrating!

  • @user-xn5ji6ni5m
    @user-xn5ji6ni5m 11 місяців тому +1

    God bless you and your family Dave, you are a good guy.

  • @allendavis9066
    @allendavis9066 4 місяці тому

    Thank you very much Dave. This video, and all your other videos have been very great.

  • @7doors847
    @7doors847 Рік тому

    Monty!!
    This series is great for us “monolinguals”.

  • @AmodeusR
    @AmodeusR Рік тому +1

    I think you shouldn't worry about terminologies, like calling list what's exactly an array. You could just state that in Python it's called a list, but that's just a terminology factor.

  • @no-reply468
    @no-reply468 Рік тому +1

    Mr Gray, you are an awesome experienced programmer, thank you for the time you spent to make these tutorials, they will have a profound impact on the career of a lot of programmers for sure! There’s one questions I’d like about a topic that has been bothering since November. What will programmers do when AI gets good at programming in your opinion? Thank you in advance…

    • @DaveGrayTeachesCode
      @DaveGrayTeachesCode  Рік тому +4

      Good programmers solve problems. The difficult part isn't the syntax or the programming language. The difficult part is taking the "user stories" - what the stakeholders tell you they want - and they are not usually good at communicating it - and turning that into a code solution that solve their problem the way they want it. If you can do that, you will always have a job.

    • @no-reply468
      @no-reply468 Рік тому

      @@DaveGrayTeachesCode Straight to the point as always! Let’s hope that we will be able to do the coding because it’s kinda fun. Thank you very much!

  • @allendavis9066
    @allendavis9066 4 місяці тому

    I think you should have talked about tuples that have only one value and mention the trailing comma. I remember the first time I came across such syntax, it was really confusing. Another thing I think that should have been included in this video is the topic of List Comprehension. Other than that, everything else was just great.

  • @laoying20
    @laoying20 3 місяці тому

    thanks a lot for teaching . you are the Best

  • @dickschweiger289
    @dickschweiger289 8 місяців тому

    very good. Downloaded your videos so i had to go through them here to give you thumbs up and a comment.

  • @muzhaffarhaydar7928
    @muzhaffarhaydar7928 Місяць тому

    thanks dave

  • @utinthein7274
    @utinthein7274 Рік тому +1

    Thanks You, Sir

  • @ram_qr
    @ram_qr Рік тому

    Thanks for another brilliant lesson!

  • @danbromberg
    @danbromberg Рік тому

    Is there a way to see if 2 lists containing identical elements are actually the same list in RAM? i.e., is there some characteristic (other than the name of the list) available to a Python coder that distinguishes them?

  • @_MoshikoAz_
    @_MoshikoAz_ Рік тому +2

    first :)
    thanks for the video, well explained

  • @bayanibjubay-ubay8084
    @bayanibjubay-ubay8084 Рік тому

    Thank you sir Dave ♥️. Can you make Django tutorial using MVC architecture?

    • @DaveGrayTeachesCode
      @DaveGrayTeachesCode  Рік тому

      You're welcome! Thank you for the request! I can do something more advanced like that after I finish building this Python for Beginners series.

  • @alexanderkomanov4151
    @alexanderkomanov4151 Рік тому

    Thanks for another good lesson!

  • @mortezafarhangpanah256
    @mortezafarhangpanah256 7 місяців тому

    Amazing Dave ❤❤

  • @SURYAPRAKASHCS-fs5yf
    @SURYAPRAKASHCS-fs5yf Рік тому

    Sir Upload Video About GPT - 4

  • @FletcherL201
    @FletcherL201 4 місяці тому +1

    take a shot every time he says tuple

  • @user-th3lt4dw1h
    @user-th3lt4dw1h 11 місяців тому

    Hey Dave. Please tell me when you inserted 'dave' (line 54) at 17.00 and then changed it to ['dave'] where did those 'd','a','v','e' go? Because you did not delete those from the list. I'm baffled how did those vanish at 17.22 ? Hoping to hear from you soon.

    • @Proton-9788
      @Proton-9788 6 місяців тому

      Python re ran the program, so it was replaced with ''dave'

  • @proexpert6325
    @proexpert6325 Рік тому

    Hey man, from the video [“Dave”, 42, True]
    Are you 42?
    Btw thanks for the video. I am so excited to learn more 🙏🏽

    • @DaveGrayTeachesCode
      @DaveGrayTeachesCode  Рік тому

      You're welcome! No, I often reference the number 42 though. Look up hitchhiker's guide to the Galaxy.

  • @davids.8509
    @davids.8509 3 місяці тому

    Bro deleting items on lists like the mafia deletes its members.

  • @michaelhall8981
    @michaelhall8981 11 місяців тому

    I'm surprised that "|" worked though. (lesson05)