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
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..
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!
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!")
fruits = [] more_fruit = input("Do you want to add fruits? Y/N: ") while more_fruit != "Y" and more_fruit != "N": more_fruit = input("Invalid input, please re-enter whether you want to add fruits or not! Y/N: ") while more_fruit == "Y": one_fruit = input("Please enter your Fruit(E to exit): ") fruits.append(one_fruit) if one_fruit == "E": fruits.remove("E") break if len(fruits) > 0: print(f"You Have {len(fruits)} fruit/s") listing = input("Do you want to know what fruits are in the list? Y/N: ") while listing != "Y" and listing != "N": listing = input("Invalid input, please re-enter whether you want to list all the fruits in the list or not Y/N: ") if listing == "Y": print("These are the fruits you added in your list:") for x in fruits: print (x, end=", ") else: print("No fruits!") I updated your code to make it a bit better, try it out and let me know what you think
I’ve watched a few python videos now and yours are the only ones I’ve found that leave me feeling like I can actually do this. You explain things so simply and clearly.
dude i have an exam about this and you helped me out a lot, thanks a lot dude. I didn't understand anything about this, but in just a quarter of an hour, i undertood like a whole chapter of my exam. I really appreciate your videos dude keep it up!
im a chemistry student wich is good at math but coding to me is just so alien, I need to pass this one coding course and i cant thank you enough for making these videos.
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.
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
Thanks, for the summarized details info. i was looking for this in all the others presenters tutorials, but i can't. My search ends here. Thanks once again.🙏
hello...your tutorials are extraordinary. can you please create a tutorial on python built-in functions(all built in functions there are 71). i hope you will work on it. thank you.
Instead of single "variable", I would probably use the term "container" that stores multiple values. But in the world of microservices, "container" means something else. 😅 Thanks for the Py tutorials.
why do you say sets are immutable? They're unhashable so by python definition they're mutable? otherwise they would have been hashable. Is there a reason why you consider them immutable?
Hi Bro Code i`m learning python and are followng you video and has learned alot. I trying to write a code with the user input where it adds up a string of numbers like ect 12345678910123 every second number in a string of number. then i want to minus it with 10 if it is more than 10 ect 14 to get the number 4. How do i write the code im stuck?
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
Thanks buddy
@@tomjones8293 bro read the but Add/Remove part
May I know what IDE youre using please
@@jeffryancheta8925 thats pycharm
@@jeffryancheta8925 he's using pycharm
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..
This and NeuralNine.
man, I've never learned code's topics this fast and clear, THANK YOU!!!
You're the only guy who explains the Python to my understanding. Tnx very much😊
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!
How far have you gotten?
Update bro
Is it easier than JavaScript?
Love the nice, clear, concise, and easy to understand style of your teaching.
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!")
WOW! That's Great
👍
fruits = []
more_fruit = input("Do you want to add fruits? Y/N: ")
while more_fruit != "Y" and more_fruit != "N":
more_fruit = input("Invalid input, please re-enter whether you want to add fruits or not! Y/N: ")
while more_fruit == "Y":
one_fruit = input("Please enter your Fruit(E to exit): ")
fruits.append(one_fruit)
if one_fruit == "E":
fruits.remove("E")
break
if len(fruits) > 0:
print(f"You Have {len(fruits)} fruit/s")
listing = input("Do you want to know what fruits are in the list? Y/N: ")
while listing != "Y" and listing != "N":
listing = input("Invalid input, please re-enter whether you want to list all the fruits in the list or not Y/N: ")
if listing == "Y":
print("These are the fruits you added in your list:")
for x in fruits:
print (x, end=", ")
else:
print("No fruits!")
I updated your code to make it a bit better, try it out and let me know what you think
I’ve watched a few python videos now and yours are the only ones I’ve found that leave me feeling like I can actually do this. You explain things so simply and clearly.
dude i have an exam about this and you helped me out a lot, thanks a lot dude. I didn't understand anything about this, but in just a quarter of an hour, i undertood like a whole chapter of my exam. I really appreciate your videos dude keep it up!
I've been looking a python course like this and finally I've found this. I love you bro code.
This is easily the best video on this topic out there.
Better and shorter than paid course
Good Job!!
why is this video way better than my 1k uni course
This was incredibly useful and easy to understand. Thank you sir.
Best channel to lear coding
im a chemistry student wich is good at math but coding to me is just so alien, I need to pass this one coding course and i cant thank you enough for making these videos.
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.
You're the man, thank you for freely sharing your knowledge it is much appreciated
I really enjoyed and learned a lot quickly from this video. Easy to follow and concise. Thank you.
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
10/10 vid , W for the fundraiser
You are always a great teacher. 🎉🎉🎉
I had to leave a thanks, your video is really well explained and easy to understand
Thanks, Good Job
Professionally delivered.
Thank you so much for these videos. I yearn to become a programmer, and this really helps.
super helpful and direct video!
Thanks bro for lists and all these collections, you are master
Thanks, for the summarized details info. i was looking for this in all the others presenters tutorials, but i can't. My search ends here. Thanks once again.🙏
Bro you explained well and very easily now i realise now I'm learning
Excellent
You are very good at explaining things
amazing explaination sir thank you so much....
bro please
make a video on how to make your java program use internet protocols and other stuff like API of WhatsApp , etc.
Bro, you are awesome. Thank you!
The concepts are easy to understand, but it's still a great reference for beginners like me.
Best bro ever
I am truly educated with the lesson
Thank you, Bro! : ) You are my angel.
A great tutorial. Thanks
Awesome - great job
Wow you are good. Spot on!
you earned a new sub! excellent teacher was struggling with these!
Clear explanation, thank you.
Good stuff!!
Love your videos bro
Excellent work, bro
You are the best out there bro. Just no words to describe your effort to make things simple. Kudos to you man.
great 👍👍👍
Amazingly well explained
This is amazing. Thanks!
Great tutorial!
nice
thank you man,, this is cooler 😎 😎
I like the collection framing. Helpful.
Waiting for this video 🤗🎉
sad for pineapple
great lesson
the goat strikes again
I like your style bro.
feel bad for you, this useful material don't getting views, but thank you for teaching us (and me actually) coding
Teacher thanks. If you finished this course teach us python for advanced
🖐 Thanks a lot ! (❤,👍,🧔♂,🙋,🐝,🌼)
GREAT!!
THANK YOU !
JavaScript: I'm more advanced than you
Python: I'm Easy than you. Your giving people mentalbreak down
Thank you!
brief and easy to remember :)
Thank you, Sir
Just off the top of my head, I can't think of any practical use for a set. Your thoughts?
good!
Bro will you make a video about asyncio in python? It will be helpful a lot.
Let's go Brooo
👍👍👍
what app do you use for your videos????
what do u mean by "set" 's value is unchangeable bt can add or remove
Thank you
goated video
thanks
Hello
Can the for fruit in fruits work for a set?
hello...your tutorials are extraordinary. can you please create a tutorial on python built-in functions(all built in functions there are 71). i hope you will work on it. thank you.
Love U bro
Instead of single "variable", I would probably use the term "container" that stores multiple values. But in the world of microservices, "container" means something else. 😅
Thanks for the Py tutorials.
Curious..why use immutable for set and unchangeable for tuples if the words almost mean the same thing?
hello
u can make video with
Ruby (programming languages)
Do you have ARRAYS in python?
can u do in the next video lua video
What if there is a multidimensional array?
Thnxx
I'm Georgian and I can't understand English my English is low level should you tell some advices to understand this basic python things
Bro i want Artificial intelligence and machine learning in python or advanced python
If you know please tell me how account store all its data.
why do you say sets are immutable? They're unhashable so by python definition they're mutable? otherwise they would have been hashable. Is there a reason why you consider them immutable?
Hey bro code, do you think you will make a full BASH play list?
I.E suggesting
please tell me your extensions on vs code
I think he uses PyCharm.
Thanks Bro! It is in my syllabus and I am so doomed 💀
Isn't a set supposed to be mutable?
Waiting for react tutorial...
Hi Bro Code i`m learning python and are followng you video and has learned alot. I trying to write a code with the user input where it adds up a string of numbers like ect 12345678910123 every second number in a string of number. then i want to minus it with 10 if it is more than 10 ect 14 to get the number 4. How do i write the code im stuck?
no, can't be that easy. In utter disbelief!
AYO IM EARLY PLS GIB ME HEART
ok