Python Lists & Tuples for Beginners | Python tutorial

  Рет қаралды 18,432

Dave Gray

Dave Gray

Күн бұрын

Пікірлер: 40
@عبدالغني-ب9ص
@عبدالغني-ب9ص Жыл бұрын
God bless you and your family Dave, you are a good guy.
@xyzxyz6095
@xyzxyz6095 6 ай бұрын
Absolutely AWESOME pedagogy, Sir Dave. Salutations from France.
@allendavis9066
@allendavis9066 7 ай бұрын
Thank you very much Dave. This video, and all your other videos have been very great.
@ahmad-murery
@ahmad-murery Жыл бұрын
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
@DaveGrayTeachesCode
@DaveGrayTeachesCode Жыл бұрын
Good to hear from you again, Ahmad! And nice suggestion! 💯
@delvorin1841
@delvorin1841 Жыл бұрын
Nice Tip.
@7doors847
@7doors847 Жыл бұрын
Monty!! This series is great for us “monolinguals”.
@delta13dek
@delta13dek 9 ай бұрын
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.
@laoying20
@laoying20 7 ай бұрын
thanks a lot for teaching . you are the Best
@muzhaffarhaydar7928
@muzhaffarhaydar7928 5 ай бұрын
thanks dave
@mortezafarhangpanah256
@mortezafarhangpanah256 10 ай бұрын
Amazing Dave ❤❤
@ram_qr
@ram_qr Жыл бұрын
Thanks for another brilliant lesson!
@DaveGrayTeachesCode
@DaveGrayTeachesCode Жыл бұрын
Glad you liked it!
@utinthein7274
@utinthein7274 Жыл бұрын
Thanks You, Sir
@DaveGrayTeachesCode
@DaveGrayTeachesCode Жыл бұрын
Most welcome!
@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?
@alexanderkomanov4151
@alexanderkomanov4151 Жыл бұрын
Thanks for another good lesson!
@DaveGrayTeachesCode
@DaveGrayTeachesCode Жыл бұрын
You're welcome!
@no-reply468
@no-reply468 Жыл бұрын
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 Жыл бұрын
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!
@_MoshikoAz_
@_MoshikoAz_ Жыл бұрын
first :) thanks for the video, well explained
@DaveGrayTeachesCode
@DaveGrayTeachesCode Жыл бұрын
You're welcome!
@AmodeusR
@AmodeusR Жыл бұрын
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.
@gredhawk
@gredhawk 5 ай бұрын
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!
@AbhayKhod-e8q
@AbhayKhod-e8q Жыл бұрын
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 9 ай бұрын
Python re ran the program, so it was replaced with ''dave'
@FletcherL201
@FletcherL201 8 ай бұрын
take a shot every time he says tuple
@allendavis9066
@allendavis9066 7 ай бұрын
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.
@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.
@SURYAPRAKASHCS-fs5yf
@SURYAPRAKASHCS-fs5yf Жыл бұрын
Sir Upload Video About GPT - 4
@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.
@AndrewKeifer
@AndrewKeifer 2 ай бұрын
I just had to keep reminding myself that, technically speaking, ZERO (0) is the first position in the list and not ONE (1). So when you keep saying "first position, second position," etc you're really saying "second position, third position," etc. Did I miss a detail perhaps? So negatives, for example [-3 : -1], are positions from the end of the list and positive numbers, [0 : 2], are positions from the beginning of the list? These are THROUGH the first specified number (-3 and 0 respectively) but ONLY TO the second specified number (-1 and 2 respectively)... yes? Put another way: " [through-includes : to-excludes ] " positive #s = "begin to end," negative #s = "end to begin"
@michaelhall8981
@michaelhall8981 Жыл бұрын
I'm surprised that "|" worked though. (lesson05)
@davids.8509
@davids.8509 6 ай бұрын
Bro deleting items on lists like the mafia deletes its members.
Python Dictionaries and Sets for Beginners | Python tutorial
29:54
Python File Handling for Beginners
22:40
Dave Gray
Рет қаралды 23 М.
黑天使被操控了#short #angel #clown
00:40
Super Beauty team
Рет қаралды 61 МЛН
Quilt Challenge, No Skills, Just Luck#Funnyfamily #Partygames #Funny
00:32
Family Games Media
Рет қаралды 55 МЛН
My scorpion was taken away from me 😢
00:55
TyphoonFast 5
Рет қаралды 2,7 МЛН
When you have a very capricious child 😂😘👍
00:16
Like Asiya
Рет қаралды 18 МЛН
Python 101: Learn the 5 Must-Know Concepts
20:00
Tech With Tim
Рет қаралды 1,2 МЛН
Python lists, sets, and tuples explained 🍍
15:06
Bro Code
Рет қаралды 335 М.
Python Tutorial for Beginners 4: Lists, Tuples, and Sets
29:05
Corey Schafer
Рет қаралды 1,5 МЛН
Python Functions for Beginners | Python tutorial
15:15
Dave Gray
Рет қаралды 11 М.
Python Closures for Beginners | Python tutorial
19:32
Dave Gray
Рет қаралды 9 М.
Python OOP (Object-Oriented Programming) Project for Beginners
30:19
How to Use Lists in Python
18:49
Programming with Mosh
Рет қаралды 329 М.
黑天使被操控了#short #angel #clown
00:40
Super Beauty team
Рет қаралды 61 МЛН