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!
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.
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
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.🙏
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
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!!!
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
You're the only guy who explains the Python to my understanding. Tnx very much😊
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.
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
Love the nice, clear, concise, and easy to understand style of your teaching.
This is easily the best video on this topic out there.
I've been looking a python course like this and finally I've found this. I love you bro code.
why is this video way better than my 1k uni course
This was incredibly useful and easy to understand. Thank you sir.
I really enjoyed and learned a lot quickly from this video. Easy to follow and concise. Thank you.
You're the man, thank you for freely sharing your knowledge it is much appreciated
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.🙏
The concepts are easy to understand, but it's still a great reference for beginners like me.
You are always a great teacher. 🎉🎉🎉
You are very good at explaining things
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.
Better and shorter than paid course
Good Job!!
10/10 vid , W for the fundraiser
Thank you so much for these videos. I yearn to become a programmer, and this really helps.
bro please
make a video on how to make your java program use internet protocols and other stuff like API of WhatsApp , etc.
I am truly educated with the lesson
Bro you explained well and very easily now i realise now I'm learning
Thanks, Good Job
Professionally delivered.
I had to leave a thanks, your video is really well explained and easy to understand
Thanks bro for lists and all these collections, you are master
amazing explaination sir thank you so much....
super helpful and direct video!
Teacher thanks. If you finished this course teach us python for advanced
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
nice
Amazingly well explained
A great tutorial. Thanks
great lesson
Bro, you are awesome. Thank you!
Clear explanation, thank you.
Best bro ever
great 👍👍👍
I like the collection framing. Helpful.
sad for pineapple
You are the best out there bro. Just no words to describe your effort to make things simple. Kudos to you man.
Awesome - great job
you earned a new sub! excellent teacher was struggling with these!
Just off the top of my head, I can't think of any practical use for a set. Your thoughts?
Thank you, Bro! : ) You are my angel.
Great tutorial!
Love your videos bro
This is amazing. Thanks!
Wow you are good. Spot on!
Excellent work, bro
Bro will you make a video about asyncio in python? It will be helpful a lot.
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.
hello
u can make video with
Ruby (programming languages)
Thank you, Sir
Good stuff!!
GREAT!!
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
JavaScript: I'm more advanced than you
Python: I'm Easy than you. Your giving people mentalbreak down
Waiting for this video 🤗🎉
brief and easy to remember :)
I like your style bro.
Thank you!
THANK YOU !
Do you have ARRAYS in python?
feel bad for you, this useful material don't getting views, but thank you for teaching us (and me actually) coding
thank you man,, this is cooler 😎 😎
Thank you
good!
Bro i want Artificial intelligence and machine learning in python or advanced python
What if there is a multidimensional array?
🖐 Thanks a lot ! (❤,👍,🧔♂,🙋,🐝,🌼)
Hello
Can the for fruit in fruits work for a set?
Curious..why use immutable for set and unchangeable for tuples if the words almost mean the same thing?
Let's go Brooo
If you know please tell me how account store all its data.
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.
what app do you use for your videos????
AYO IM EARLY PLS GIB ME HEART
ok
Waiting for react tutorial...
can u do in the next video lua video
goated video
yes I am first...
👍👍👍
Thnxx
Hey bro code, do you think you will make a full BASH play list?
I.E suggesting
Isn't a set supposed to be mutable?
Thanks Bro! It is in my syllabus and I am so doomed 💀
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?
Love U bro
please tell me your extensions on vs code
I think he uses PyCharm.
omg. Why did they not teach us about help() on day 1 of college?
no, can't be that easy. In utter disbelief!
Goat
bro!!!! Sets are mutable
sorry to correct , but it requires correction
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?
hey man can you help me load a graph on GUI in java
1:29 true
sounds a lot like sets in maths