Python lists, sets, and tuples explained 🍍

แชร์
ฝัง
  • เผยแพร่เมื่อ 21 ธ.ค. 2024

ความคิดเห็น •

  • @BroCodez
    @BroCodez  2 ปีที่แล้ว +217

    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

    • @Br0_CoDeS
      @Br0_CoDeS ปีที่แล้ว +2

      Thanks buddy

    • @imfrommars7362
      @imfrommars7362 ปีที่แล้ว +4

      @@tomjones8293 bro read the but Add/Remove part

    • @jeffryancheta8925
      @jeffryancheta8925 ปีที่แล้ว

      May I know what IDE youre using please

    • @dimitriwest8258
      @dimitriwest8258 ปีที่แล้ว

      @@jeffryancheta8925 thats pycharm

    • @emil_qxy
      @emil_qxy ปีที่แล้ว

      @@jeffryancheta8925 he's using pycharm

  • @jcoronav
    @jcoronav ปีที่แล้ว +80

    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..

    • @DanielHai-ow3km
      @DanielHai-ow3km 6 หลายเดือนก่อน

      This and NeuralNine.

  • @mayracarreno4123
    @mayracarreno4123 11 หลายเดือนก่อน +21

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

  • @BüblySnowfláke-m3x
    @BüblySnowfláke-m3x ปีที่แล้ว +8

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

  • @shocky6302
    @shocky6302 2 ปีที่แล้ว +38

    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!

  • @HelicopterRidesForCommunists
    @HelicopterRidesForCommunists 2 ปีที่แล้ว +10

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

  • @godoy_
    @godoy_ 7 หลายเดือนก่อน +9

    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!")

    • @extendedsomeone
      @extendedsomeone หลายเดือนก่อน +1

      WOW! That's Great
      👍

    • @MuhammadTahalol
      @MuhammadTahalol หลายเดือนก่อน +1

      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

  • @clairewilliams9416
    @clairewilliams9416 3 หลายเดือนก่อน

    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.

  • @EnesKarkoukli
    @EnesKarkoukli 14 วันที่ผ่านมา

    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!

  • @yukikimino-k7s
    @yukikimino-k7s 7 หลายเดือนก่อน +3

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

  • @ptd3v
    @ptd3v 8 หลายเดือนก่อน +1

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

  • @ronitsworld9388
    @ronitsworld9388 3 หลายเดือนก่อน +1

    Better and shorter than paid course
    Good Job!!

  • @말랑물만두족제비
    @말랑물만두족제비 ปีที่แล้ว +11

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

  • @jayman8001
    @jayman8001 ปีที่แล้ว +5

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

  • @KarthikHR-if4ry
    @KarthikHR-if4ry 8 วันที่ผ่านมา

    Best channel to lear coding

  • @Tom-vk2rv
    @Tom-vk2rv 28 วันที่ผ่านมา

    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.

  • @mohammadnoori9278
    @mohammadnoori9278 ปีที่แล้ว +5

    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.

  • @fbushphone
    @fbushphone 8 หลายเดือนก่อน

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

  • @yanasitta
    @yanasitta 11 หลายเดือนก่อน

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

  • @witwoowitwoo2287
    @witwoowitwoo2287 2 ปีที่แล้ว +2

    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

  • @masterxenon
    @masterxenon หลายเดือนก่อน

    10/10 vid , W for the fundraiser

  • @prathampatel8808
    @prathampatel8808 2 หลายเดือนก่อน

    You are always a great teacher. 🎉🎉🎉

  • @hirootto2771
    @hirootto2771 10 หลายเดือนก่อน

    I had to leave a thanks, your video is really well explained and easy to understand

  • @cozycubix
    @cozycubix ปีที่แล้ว +1

    Thanks, Good Job
    Professionally delivered.

  • @JDgiggles
    @JDgiggles ปีที่แล้ว

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

  • @lydiabirnbaum8018
    @lydiabirnbaum8018 2 หลายเดือนก่อน

    super helpful and direct video!

  • @_Tomaszeq
    @_Tomaszeq 9 หลายเดือนก่อน

    Thanks bro for lists and all these collections, you are master

  • @lal_1404
    @lal_1404 9 หลายเดือนก่อน

    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.🙏

  • @ShaikSameer-u7b
    @ShaikSameer-u7b 11 หลายเดือนก่อน

    Bro you explained well and very easily now i realise now I'm learning

  • @qazimtahir
    @qazimtahir 10 วันที่ผ่านมา

    Excellent

  • @janlim9374
    @janlim9374 4 หลายเดือนก่อน

    You are very good at explaining things

  • @SHREYASPATEL-wh1ki
    @SHREYASPATEL-wh1ki 8 หลายเดือนก่อน

    amazing explaination sir thank you so much....

  • @zr0724
    @zr0724 2 ปีที่แล้ว +8

    bro please
    make a video on how to make your java program use internet protocols and other stuff like API of WhatsApp , etc.

  • @nikosvasilopoulos5540
    @nikosvasilopoulos5540 หลายเดือนก่อน

    Bro, you are awesome. Thank you!

  • @balkanarchist1914
    @balkanarchist1914 9 หลายเดือนก่อน

    The concepts are easy to understand, but it's still a great reference for beginners like me.

  • @beforechrist1193
    @beforechrist1193 2 ปีที่แล้ว +2

    Best bro ever

  • @jatauinnocent7956
    @jatauinnocent7956 ปีที่แล้ว

    I am truly educated with the lesson

  • @piano_depois_dos_50
    @piano_depois_dos_50 5 หลายเดือนก่อน

    Thank you, Bro! : ) You are my angel.

  • @thinkandquestion1305
    @thinkandquestion1305 7 หลายเดือนก่อน

    A great tutorial. Thanks

  • @311DaveR
    @311DaveR 10 หลายเดือนก่อน

    Awesome - great job

  • @jasonn5196
    @jasonn5196 6 หลายเดือนก่อน

    Wow you are good. Spot on!

  • @HishamButt-ue5rc
    @HishamButt-ue5rc ปีที่แล้ว

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

  • @wrtreinador
    @wrtreinador 10 หลายเดือนก่อน

    Clear explanation, thank you.

  • @binarycloud1843
    @binarycloud1843 11 หลายเดือนก่อน

    Good stuff!!

  • @aritradas6588
    @aritradas6588 2 ปีที่แล้ว +1

    Love your videos bro

  • @JoaoLima-pq1hm
    @JoaoLima-pq1hm ปีที่แล้ว

    Excellent work, bro

  • @send2gokul
    @send2gokul 5 หลายเดือนก่อน

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

  • @JamesBond007rj
    @JamesBond007rj 2 ปีที่แล้ว

    great 👍👍👍

  • @mlfreak2471
    @mlfreak2471 ปีที่แล้ว

    Amazingly well explained

  • @kieljnsz
    @kieljnsz 6 หลายเดือนก่อน

    This is amazing. Thanks!

  • @Trè_Mar
    @Trè_Mar 6 หลายเดือนก่อน

    Great tutorial!

  • @ranjithramanathan7663
    @ranjithramanathan7663 ปีที่แล้ว +1

    nice

  • @Muhaiminul_coding_club
    @Muhaiminul_coding_club 11 หลายเดือนก่อน

    thank you man,, this is cooler 😎 😎

  • @MannyBernabe
    @MannyBernabe ปีที่แล้ว

    I like the collection framing. Helpful.

  • @TN61GAMER
    @TN61GAMER 2 ปีที่แล้ว +1

    Waiting for this video 🤗🎉

  • @nfsheat1456
    @nfsheat1456 10 หลายเดือนก่อน +15

    sad for pineapple

  • @altarious7251
    @altarious7251 ปีที่แล้ว

    great lesson

  • @bawankhalid1209
    @bawankhalid1209 13 วันที่ผ่านมา

    the goat strikes again

  • @LauwaliIsaDk
    @LauwaliIsaDk 2 ปีที่แล้ว

    I like your style bro.

  • @ботяра-й5х
    @ботяра-й5х 2 ปีที่แล้ว

    feel bad for you, this useful material don't getting views, but thank you for teaching us (and me actually) coding

  • @al-cadaalachannel3194
    @al-cadaalachannel3194 2 ปีที่แล้ว

    Teacher thanks. If you finished this course teach us python for advanced

  • @to4698
    @to4698 10 หลายเดือนก่อน

    🖐 Thanks a lot ! (❤,👍,🧔‍♂,🙋,🐝,🌼)

  • @tara2337
    @tara2337 9 หลายเดือนก่อน

    GREAT!!

  • @ISOPOINTQCS
    @ISOPOINTQCS 6 หลายเดือนก่อน

    THANK YOU !

  • @drewxx8527
    @drewxx8527 2 ปีที่แล้ว +2

    JavaScript: I'm more advanced than you
    Python: I'm Easy than you. Your giving people mentalbreak down

  • @gencmuhendis8401
    @gencmuhendis8401 6 หลายเดือนก่อน

    Thank you!

  • @bekkhanh
    @bekkhanh ปีที่แล้ว

    brief and easy to remember :)

  • @DS.Fahad03
    @DS.Fahad03 8 หลายเดือนก่อน

    Thank you, Sir

  • @rontarrant
    @rontarrant 9 หลายเดือนก่อน

    Just off the top of my head, I can't think of any practical use for a set. Your thoughts?

  • @erekle99
    @erekle99 2 ปีที่แล้ว

    good!

  • @markmilan57
    @markmilan57 11 หลายเดือนก่อน

    Bro will you make a video about asyncio in python? It will be helpful a lot.

  • @nahomhailu961
    @nahomhailu961 2 ปีที่แล้ว

    Let's go Brooo

  • @adam-vip
    @adam-vip 2 ปีที่แล้ว

    👍👍👍

  • @SpookXDD
    @SpookXDD หลายเดือนก่อน

    what app do you use for your videos????

  • @lucypher8653
    @lucypher8653 23 วันที่ผ่านมา

    what do u mean by "set" 's value is unchangeable bt can add or remove

  • @Bleedpool
    @Bleedpool ปีที่แล้ว

    Thank you

  • @mny_11
    @mny_11 5 หลายเดือนก่อน

    goated video

  • @atabiti_1337
    @atabiti_1337 3 วันที่ผ่านมา

    thanks

  • @kwameasedaboydsom8796
    @kwameasedaboydsom8796 5 หลายเดือนก่อน

    Hello
    Can the for fruit in fruits work for a set?

  • @sanunitwaibu529
    @sanunitwaibu529 ปีที่แล้ว

    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.

  • @ombhide9165
    @ombhide9165 ปีที่แล้ว

    Love U bro

  • @KatRollo
    @KatRollo 10 หลายเดือนก่อน +1

    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.

  • @sherubawon1
    @sherubawon1 ปีที่แล้ว

    Curious..why use immutable for set and unchangeable for tuples if the words almost mean the same thing?

  • @jubbed5826
    @jubbed5826 2 ปีที่แล้ว

    hello
    u can make video with
    Ruby (programming languages)

  • @imelaniiiie
    @imelaniiiie ปีที่แล้ว

    Do you have ARRAYS in python?

  • @decktoe
    @decktoe 2 ปีที่แล้ว +1

    can u do in the next video lua video

  • @KeithJayalal
    @KeithJayalal 9 หลายเดือนก่อน

    What if there is a multidimensional array?

  • @trxlly
    @trxlly 2 ปีที่แล้ว

    Thnxx

  • @პროგრამირებისშესახებ
    @პროგრამირებისშესახებ 4 หลายเดือนก่อน

    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

  • @kamal9294
    @kamal9294 2 ปีที่แล้ว +2

    Bro i want Artificial intelligence and machine learning in python or advanced python

  • @tee-hee9553
    @tee-hee9553 2 ปีที่แล้ว

    If you know please tell me how account store all its data.

  • @Mythiril
    @Mythiril ปีที่แล้ว

    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?

  • @rewardedwithemaan646
    @rewardedwithemaan646 2 ปีที่แล้ว

    Hey bro code, do you think you will make a full BASH play list?
    I.E suggesting

  • @lolman6976
    @lolman6976 2 ปีที่แล้ว +1

    please tell me your extensions on vs code

  • @durlabhbiswas860
    @durlabhbiswas860 2 ปีที่แล้ว

    Thanks Bro! It is in my syllabus and I am so doomed 💀

  • @tugkaneren1722
    @tugkaneren1722 4 หลายเดือนก่อน

    Isn't a set supposed to be mutable?

  • @SasiKumar-un5zw
    @SasiKumar-un5zw 2 ปีที่แล้ว

    Waiting for react tutorial...

  • @Pgertse7
    @Pgertse7 ปีที่แล้ว

    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?

  • @phanikiran9826
    @phanikiran9826 ปีที่แล้ว

    no, can't be that easy. In utter disbelief!

  • @lympexyt6969
    @lympexyt6969 2 ปีที่แล้ว +1

    AYO IM EARLY PLS GIB ME HEART