Python lists, sets, and tuples explained 🍍

preview_player
Показать описание
#python #tutorial #course

Python list set tuple tutorial example explained

00:00:00 intro
00:00:49 list
00:09:40 set
00:12:40 tuple
00:14:22 conclusion

# List = [] ordered and changeable. Duplicates OK
# Set = {} unordered and immutable, but Add/Remove OK. NO duplicates
# Tuple = () ordered and unchangeable. Duplicates OK. FASTER
Рекомендации по теме
Комментарии
Автор

DRINKING GAME: Take a shot every time I say the word *pineapple*

# List = [] ordered and changeable. Duplicates OK
# Set = {} unordered and immutable, but Add/Remove OK. NO duplicates
# Tuple = () ordered and unchangeable. Duplicates OK. FASTER

BroCodez
Автор

I have seen dozens of tutorials, including the most known. Categorically, I can say yours are the best: clear, simple, intelligent speech. This is particularly appreciated by a non native English speaker. Thanks..

jcoronav
Автор

After 8 years of trying to figure out python, you're one of only two people who could ever get it into my head and for that I'm ever greatful, thanks Bro!

fqfgecngacbgeagbd
Автор

man, I've never learned code's topics this fast and clear, THANK YOU!!!

mayracarreno
Автор

I have recently been learning Python, and I will say that I am thankful for running across your channel. Thank you for all the knowledge and experience you teach and share! I hope to become successful in coding someday soon!

shocky
Автор

Love the nice, clear, concise, and easy to understand style of your teaching.

HelicopterRidesForCommunists
Автор

I've been looking a python course like this and finally I've found this. I love you bro code.

kaungbhonethant
Автор

You're the only guy who explains the Python to my understanding. Tnx very much😊

ShadowVortez
Автор

Thanks for all the efforts you are putting on making these videos. They are extremely helpful to me to organize what I've been learning. This video was really good and I want to ask if you can cover more advanced methods for them in another video. Thanks again.

mohammadnoori
Автор

This is easily the best video on this topic out there.

ptdv
Автор

i love these videos iv spent many many hours watching. Im learning so much who knew so many things as changed over the years. i used to do coding many many years ago when there was only microsoft frontpage and notepad 🤣 keep up the great work

witwoowitwoo
Автор

This was incredibly useful and easy to understand. Thank you sir.

jayman
Автор

you earned a new sub! excellent teacher was struggling with these!

HishamButt-uerc
Автор

Thank you so much for these videos. I yearn to become a programmer, and this really helps.

JDgiggles
Автор

Made this code while studying this
After a few minutes trying stuff, finally worked!
Please try it!

fruits = []

more_fruit = input("Do you want to add fruits? Y/N: ")
while more_fruit == "Y":
one_fruit = input("Please enter your Fruit(E to exit): ")
fruits.append(one_fruit)
if one_fruit == "E":
break
else:
continue
else:
pass

if len(fruits) > 0:
fruits.remove("E")
print(f"You Have {len(fruits)} fruit/s")
listing = input("Do you want to know what fruits are in the list? Y/N: ")
if listing == "Y":
for x in fruits:
print (x)
else:
pass
else:
print("No fruits!")

godoy_
Автор

I really enjoyed and learned a lot quickly from this video. Easy to follow and concise. Thank you.

yanasitta
Автор

why is this video way better than my 1k uni course

wufmvif
Автор

Thanks, Good Job

Professionally delivered.

cozycubix
Автор

You're the man, thank you for freely sharing your knowledge it is much appreciated

fbushphone
Автор

You are the best out there bro. Just no words to describe your effort to make things simple. Kudos to you man.

sendgokul