Python Full Course for free 🐍 (2024)

Поделиться
HTML-код

Комментарии • 4 тыс.

  • @BroCodez
    @BroCodez  21 день назад +251

    Here is how to change the console colors to be green, like mine, or another color.
    I forgot to mention that in the video 😅
    File -> Settings -> Color Scheme -> Console Colors -> Console -> Standard Output

    • @legendary9548
      @legendary9548 21 день назад +2

      ty bro

    • @Chipdoughgaming
      @Chipdoughgaming 21 день назад +4

      I love you

    • @RithulSudarson-f5r
      @RithulSudarson-f5r 21 день назад +1

      what about in vs code, how do we do it there

    • @عمرمحمود-ص3ح
      @عمرمحمود-ص3ح 20 дней назад +3

      bro please make a video about how to deploy a java application with a mysql database

    • @RIZZshant
      @RIZZshant 20 дней назад +6

      Hey man I'm 3 months late but I want to thank you for every thing you did

  • @Layuxz
    @Layuxz 2 месяца назад +711

    I'm just commenting to support. Honestly flabbergasted you posted 12 hours of real content for free. Bro is destroying the competition.

    • @camellia-v8i
      @camellia-v8i Месяц назад +4

      100th Like!

    • @ҟіӏӏ
      @ҟіӏӏ Месяц назад +16

      bro even put a fundraiser on the video. this guy is too good to be true 😂

    • @NubsWithGuns
      @NubsWithGuns 22 дня назад +1

      Now you know how to print useless text on the screen in every way possible he could come up with.
      I just don't see that as a skill worth wasting 12 hours for

    • @Layuxz
      @Layuxz 22 дня назад

      @NubsWithGuns Are you dumb? It doesn't matter what tutorial you look up, all of them are like this. Why? Because how tf are you supposed to learn programming? Making an app? Without knowing what a for loop is? After this tutorial, I took a look at Harvard's CS50's Python course, and this tutorial somehow is more understandable than that one.

    • @williamhathway5353
      @williamhathway5353 21 день назад +2

      @@NubsWithGunswhat would you advice as a better alternative for someone trying to learn the best way possible?

  • @MakaVeli-vp7wo
    @MakaVeli-vp7wo 3 месяца назад +1016

    For every beginner out there, I suggest you to PAUSE the video if you are getting confused.
    Take a short break, eat something or drink. Go back to PC and re-watch from where you paused.
    I do this too and this makes me refresh my brain. And if I STILL don't understand, I will research about it on internet or watch a short video on RUclips related to the topic that I did not understand.
    GOOD LUCK!

    • @adrianjonathan3216
      @adrianjonathan3216 3 месяца назад +21

      i will save your text in my brain Thank You

    • @MrDominic600
      @MrDominic600 3 месяца назад +20

      the only logical way to do it honestly, glad to have read this quality comment

    • @swpderf
      @swpderf 3 месяца назад +7

      That's exactly what I do, and it works fine. It's just too much to store at once.

    • @jamesclerk815
      @jamesclerk815 2 месяца назад +8

      I wish I read this first, I almost died on this 12-hour marathon! 😭

    • @DURGHAM6
      @DURGHAM6 2 месяца назад +3

      wonderful

  • @Venerable_
    @Venerable_ 9 дней назад +18

    My journey to finish this course by the End of the Year
    Date: 10 December 2024
    Day 1: Completed (00:21:15) [will continue from "user input"]
    Day 2: Completed (01:00:06) [will continue from "calculator program"]
    Day 3: Completed (01:21:28) [will continue from "string methods"]
    Day 4: Completed (02:06:28) [will continue from "for loops"]
    Day 5: Completed (02:23:03) [will continue from "lists, sets, and tuples"]
    Day 6: Completed (03:03:27) [will continue from "dictionaries"]
    Day 7: No progress as I was traveling
    Day 8: Completed (03:19:41) [will continue from "random numbers"]
    Day 9: Completed (04:02:49) [will continue from "default arguments"]

    • @Venerable_
      @Venerable_ 8 дней назад +1

      Mad Libs Game:
      adjective1 = input("Enter an adjective(description of something): ")
      name = input("Enter a name: ")
      noun = input("Enter a noun(person, place, thing): ")
      plural_noun = input("Enter a plural_noun: ")
      verb_ending_in_ing = input("Enter a verb ending in -ing: ")
      adjective2 = input("Enter an adjective: ")
      adjective3 = input("Enter an adjective: ")
      food_item = input("Enter a food item: ")
      drink = input("Enter a drink: ")
      print(f"One fine {adjective1} day, {name} decided to visit the park.")
      print(f"They brought their favorite {noun} to play with.")
      print(f"At the park, they saw a group of {plural _noun} doing {verb_ending_in_ing}.")
      print(f"It was so {adjective2} that they couldn't resist joining in!")
      print(f"Later, they enjoyed a {adjective3} picnic with {food_item} and {drink}.")
      print("It was a day to remember!")

    • @Venerable_
      @Venerable_ 6 дней назад +1

      # Compound Interest Calculator
      Principal = float(input("Enter your principal amount: "))
      while Principal

    • @Venerable_
      @Venerable_ 4 дня назад +1

      Went beyond for this one, lol!
      Shooping cart program
      foods = [] # List for food items
      prices = [] # List for prices
      quantities = [] # List for quantities
      total = 0 # Initialize total to 0
      while True:
      # Ask user for food item or exit option
      food = input("Enter a food to buy (or 'q' to quit): ")
      if food.lower() == "q": # Break loop if user wants to quit
      break
      # Add food to list
      foods.append(food)
      # Get and append the price as a float
      price = float(input(f"Enter the price for {food}: $"))
      prices.append(price)
      # Get the quantity needed as an int
      quantity = int(input(f"Enter the quantity for {food}: "))
      quantities.append(quantity)
      # Display cart
      print("-------Your Cart-------")
      for x in range(len(foods)): # Iterate through the lists
      print(f"{foods[x]} x {quantities[x]} @ ${prices[x]:,.2f} each")
      print("-----------------------")
      # Calculate and display the total cost
      for y in range(len(prices)): # Multiply each price by its quantity
      total += prices[y] * quantities[y]
      print(f"Your total is: ${total:,.2f}")

    • @JohnSmith-u6j
      @JohnSmith-u6j День назад

      GET BACK TO IT

    • @Venerable_
      @Venerable_ День назад +1

      ​@@JohnSmith-u6j Yes sir 🫡
      Thank you! was considering procrastinating since I've had a long journey, but I'll get started and do a bit.
      Thanks again!

  • @benwiese4846
    @benwiese4846 15 дней назад +32

    This is just for me to track where I am in the video
    Sitting 1: 32:41
    Sitting 2: 1:00:00
    Sitting 3 1:21:19
    Sitting 4 1:39:06
    Sitting 5: 2:17:34
    Sitting 6 2:23:06
    Sitting 7: 3:03:19
    12/13/24 Sitting 8: 3:42:05
    12/18/24 Sitting 9 4:02:31

    • @marcusOlson-x7g
      @marcusOlson-x7g 8 дней назад +7

      HEY come back youre not finnished!! you still have 9 hours to go

    • @RIp_Faker023
      @RIp_Faker023 7 дней назад +1

      I will be your first comment bro! Keep going!

    • @hadespower7426
      @hadespower7426 6 дней назад +2

      9 more hours buddy..

    • @benwiese4846
      @benwiese4846 6 дней назад

      @@marcusOlson-x7g Now 8 hours and 20 min!

    • @laurel8931
      @laurel8931 5 дней назад +1

      You actually came back! Good job!

  • @J_y87
    @J_y87 4 месяца назад +1671

    Seriously,he make everything free and fundraising for the hospital.Mad respect for this gigachad

    • @AzizOzluk
      @AzizOzluk 2 месяца назад +9

      I agree W Mans

    • @Greatest_Villain
      @Greatest_Villain 2 месяца назад +16

      thats literally the reason why he's using a gigachad pfp. What a guy huh..

    • @Greatest_Villain
      @Greatest_Villain 2 месяца назад +7

      thats literally the reason why he's using a gigachad pfp. What a guy huh..

    • @Justin-my2cs
      @Justin-my2cs 2 месяца назад +4

      I dont believe in charity seem im pretty the mast majority of them are scam but the fact that his guys is good and its willing do donate fr is giga chad behavior

    • @jamesross1003
      @jamesross1003 2 месяца назад +1

      Pycharm isn't free, it's 30 day trial then it's $99.

  • @Sportgameww
    @Sportgameww 4 месяца назад +516

    [ = project]
    #1 (00:00:00) python tutorial for beginners
    #2 (00:05:49) variables
    #3 (00:16:05) type casting
    #4 (00:21:15) user input
    #5 (00:32:42) madlibs game
    #6 (00:37:55) arithmetic & math
    #7 (00:51:46) if statements
    #8 (01:00:06) calculator program
    #9 (01:05:59) weight conversion program
    #10 (01:09:59) temperature conversion program
    #11 (01:13:58) logical operators
    #12 (01:21:28) conditional expressions
    #13 (01:27:03) string methods
    #14 (01:39:08) string indexing
    #15 (01:46:35) format specifiers
    #16 (01:51:55) while loops
    #17 (01:58:53) compound interest calculator
    #18 (02:06:28) for loops
    #19 (02:11:33) countdown timer program
    #20 (02:17:28) nested loops
    #21 (02:23:03) lists, sets, and tuples
    #22 (02:38:08) shopping cart program
    #23 (02:45:21) 2D collections
    #24 (02:53:59) quiz game
    #25 (03:03:27) dictionaries
    #26 (03:11:33) concession stand program
    #27 (03:19:42) random numbers
    #28 (03:24:16) number guessing game
    #29 (03:32:37) rock, paper, scissors game
    #30 (03:42:06) dice roller program ⚂
    #31 (03:52:12) functions
    #32 (04:02:50) default arguments
    #33 (04:08:56) keyword arguments
    #34 (04:15:40) *args & **kwargs
    #35 (04:30:33) iterables
    #36 (04:37:04) membership operators
    #37 (04:45:56) list comprehensions
    #38 (04:56:17) match-case statements
    #39 (05:02:13) modules
    #40 (05:08:51) scope resolution
    #41 (05:14:22) if name == 'main':
    #42 (05:23:34) banking program
    #43 (05:38:34) slot machine
    #44 (05:58:45) encryption program
    #45 (06:07:26) hangman game
    #46 (06:32:32) python object oriented programming
    #47 (06:44:50) class variables
    #48 (06:53:06) inheritance
    #49 (07:00:02) multiple inheritance
    #50 (07:08:04) super()
    #51 (07:21:10) polymorphism
    #52 (07:29:15) duck typing
    #53 (07:33:34) static methods
    #54 (07:39:31) class methods
    #55 (07:46:16) magic methods
    #56 (07:59:51) @property
    #57 (08:07:33) decorators
    #58 (08:14:57) exception handling
    #59 (08:20:46) file detection
    #60 (08:27:47) writing files
    #61 (08:41:33) reading files
    #62 (08:48:29) dates & times
    #63 (08:54:46) alarm clock
    #64 (09:05:03) multithreading
    #65 (09:13:45) request API data
    #66 (09:22:19) PyQt5 GUI intro
    #67 (09:31:27) PyQt5 labels
    #68 (09:40:23) PyQt5 images
    #69 (09:46:28) PyQt5 layout managers
    #70 (09:53:07) PyQt5 buttons
    #71 (10:00:12) PyQt5 checkboxes
    #72 (10:06:42) PyQt5 radio buttons
    #73 (10:15:55) PyQt5 line edits
    #74 (10:21:55) PyQt5 CSS styles
    #75 (10:32:48) digital clock program
    #76 (10:48:38) stopwatch program
    #77 (11:06:05) weather API app

    • @ibader6248
      @ibader6248 4 месяца назад +33

      bro the video has been out for 2 hours and you casually summarized a 12 hours video

    • @julkarnain4426
      @julkarnain4426 4 месяца назад +34

      @@ibader6248 It was already summarized in the description XD

    • @ninjapirate123
      @ninjapirate123 4 месяца назад +4

      Lovely

    • @raffiki101
      @raffiki101 4 месяца назад +8

      People like you are important in life❤

    • @therussia3108
      @therussia3108 3 месяца назад +11

      you lit just copied and pasted it from the description lmao👀👀👀👀👀👀👀👀👀👀👀👀

  • @accelleron
    @accelleron 2 месяца назад +163

    In ancient Greece, the top philosophers would just come out to the city square and give free lectures on geometry or history or whatever to anyone who wanted to attend. 2,000 years later we have stuff like a 12-hour course teaching you the basics of Python for free. Thank you so much for what you do. We're watching, we're learning, and it's really great to have you here.

    • @TolegenAibatullin
      @TolegenAibatullin 28 дней назад +10

      Respect the chad who traveled from ancient Greece through the time to nowadays, mastered Python and sharing this knowledge with us for free. What a chad

    • @mohammadnusair
      @mohammadnusair 17 дней назад

      same in the golden age

    • @Ajajin69
      @Ajajin69 15 дней назад +4

      This is top tier commenting rn. It applauses the content creator while adding a fun fact in such an elegant and fantastic way!!!

    • @libaedunto4875
      @libaedunto4875 12 дней назад +3

      @@TolegenAibatullin ironic that Python is a Greek word and a monster in Greek mythology

  • @pikadrew_
    @pikadrew_ 21 день назад +4

    My Progress for finishing this course:
    Day 1 : 3:03:26
    Day 2 : 06:07:25
    Day 3 : 07:33:33
    Day 4 : Break Day
    Day 5 : 08:38:48
    Day 6 : School Stuff
    Day 7 : School Stuff
    Day 8 : 09:50:00
    Day 9 : School stuff
    Day 10: 12:00:00
    Done!

  • @janellyramirez8275
    @janellyramirez8275 2 месяца назад +97

    As a “intermediate beginner” to coding, i say that this is probably the clearest explanation to the point where I needed to look at. The while loops really helped me!

  • @diduknow7
    @diduknow7 3 месяца назад +40

    For the weight conversion program.
    (01::05:59)
    unit = input("Kilograms or Pounds? (K or L): ").upper() # Convert input to uppercase
    Because when you enter l (lowercase) you get the right result but when you enter k, you get "k was not valid"

    • @infetnpha6725
      @infetnpha6725 2 месяца назад +1

      Thank you G!

    • @MyArtFile_
      @MyArtFile_ 2 месяца назад +1

      Thanks bro i was just thinking about this problem 😊

    • @takumifujiwara3066
      @takumifujiwara3066 2 месяца назад

      Yeah i faced that problem but i let it be that has before learning about the upper and lower but i didn't know i can use it like that thanks!

  • @kylo.q4286
    @kylo.q4286 2 месяца назад +88

    madlibs atempt:
    v1 = input("1. Proper Noun (Person’s Name): ")
    v2 = input("2. Noun: ")
    v3 = input("3. Adjective (Feeling): ")
    v4 = input("4. Verb: ")
    v5 = input("5. Adjective (Feeling): ")
    v6 = input("6. Animal: ")
    v7 = input("7. Verb: ")
    v8 = input("8. Color: ")
    v9 = input("9. Verb (ending in ing): ")
    v10 = input("10. Adverb (ending in ly): ")
    v11 = int(input("11. Number: "))
    v12 = input("12. Measure of Time: ")
    v13 = input("13. Color: ")
    v14 = input("14. Animal: ")
    v15 = int(input("15. Number: "))
    v16 = input("16. Silly Word: ")
    v17 = input("17. Noun: ")
    print(f"""This weekend I am going camping with {v1}. I packed my lantern, sleeping bag, and
    {v2}. I am so {v3} to {v4} in a tent. I am {v5} we
    might see a {v6}, they are kind of dangerous. We are going to hike, fish, and {v7}.
    I have heard that the {v8} lake is great for {v9}. Then we will
    {v10} hike through the forest for {v11} {v12}. If I see a
    {v13} {v14} while hiking, I am going to bring it home as a pet! At night we will tell
    {v15} {v16} stories and roast {v17} around the campfire!!""")
    result:
    1. Proper Noun (Person’s Name): Maria
    2. Noun: horse
    3. Adjective (Feeling): bored
    4. Verb: eat
    5. Adjective (Feeling): happy
    6. Animal: mouse
    7. Verb: clapping
    8. Color: turqois
    9. Verb (ending in ing): pulling
    10. Adverb (ending in ly): hardly
    11. Number: 24
    12. Measure of Time: night
    13. Color: green
    14. Animal: dog
    15. Number: 65
    16. Silly Word: pus*y
    17. Noun: pen
    This weekend I am going camping with Maria. I packed my lantern, sleeping bag, and
    horse. I am so bored to eat in a tent. I am happy we
    might see a mouse, they are kind of dangerous. We are going to hike, fish, and clapping.
    I have heard that the turqois lake is great for pulling. Then we will
    hardly hike through the forest for 24 night. If I see a
    green dog while hiking, I am going to bring it home as a pet! At night we will tell
    65 pus*y stories and roast pen around the campfire!!

  • @CayzFNCS
    @CayzFNCS 24 дня назад +121

    Here is my journey to finish this course as a 11 year old!:
    day 1: 32:41
    day 2: 1:00:05
    day 3: 1:39:00

  • @floofybear
    @floofybear 4 месяца назад +1334

    Bro makes a Free 12 Hour well explained course and makes it a fundraiser. A real Gigachad.
    8:26:40 Bro Code wallpaper reveal + he uses Edge + he's got Nuclear Launch Codes on his desktop 😱

    • @faisalhrbk
      @faisalhrbk 4 месяца назад +28

      may god bless him

    • @jwfans3127
      @jwfans3127 3 месяца назад +10

      hes the real gigachad but more in value

    • @Carla-ez4yi
      @Carla-ez4yi 3 месяца назад +13

      bro fr taught me more Python than any teacher in my school

    • @DAVEZO33
      @DAVEZO33 3 месяца назад +5

      Bro code taught me advanced coding languages and my school teaches me scratch 😭

    • @Sjjeien
      @Sjjeien 3 месяца назад

      Explained adequate.
      Cant say very well

  • @FelonRac
    @FelonRac 3 месяца назад +289

    Dude I'm in college for Cyber Security and am taking my first python class rn. Our textbooks can really overcomplicate and flood you with information and it has been very difficult for me. The fact that you uploaded 12 HOURS of straight to the point, easy to understand content with real time examples is so amazing. You have helped me pass my python class. You are a hero dude! :)

    • @suryatejand4078
      @suryatejand4078 3 месяца назад +6

      Yeah same , from his contents I am understanding stuff

    • @opdamcha305
      @opdamcha305 3 месяца назад +3

      Less reading more typing bruh😂

    • @glitchysenpai977
      @glitchysenpai977 3 месяца назад +1

      ay man fellow cyber security stud here too good luck on your journey brother

    • @ablori
      @ablori 2 месяца назад +1

      damn same my college starts this week and um im kinda fcked up

    • @akinapallydeepika4130
      @akinapallydeepika4130 2 месяца назад

      is this easy to learn directly without any knowledge on coding ??

  • @number12xbro
    @number12xbro 4 месяца назад +437

    I was literally about to study Python and you just posted this video.

    • @FRareDom
      @FRareDom 4 месяца назад +14

      samee bro, he is such a legend

    • @WayneMatale
      @WayneMatale 4 месяца назад +5

      The timing be crazy🔥🔥

    • @ahmedalicasper5056
      @ahmedalicasper5056 4 месяца назад +4

      Same

    • @theye29
      @theye29 4 месяца назад +5

      Same lol, the timing was just peak

    • @jamiepianist
      @jamiepianist 4 месяца назад +2

      Me too!

  • @Arsalanfr
    @Arsalanfr 5 дней назад +2

    Ive been inconsistent so ima track my days rn, I promise im completing the course asap lol
    Where I left off: 1:32:36
    Day 2: 1:40:19 I couldn't watch the course because I had to prep for some tests at school, my head is all heavy and am all restless because little sleep, but now that winter break's here I will complete the course asap

    • @JohnSmith-u6j
      @JohnSmith-u6j День назад

      get back to it 🙌

    • @Arsalanfr
      @Arsalanfr 8 часов назад

      @@JohnSmith-u6j sorry I had to study for 2 tests before the break, but now's when I really start grinding!

  • @Royallight
    @Royallight 19 дней назад +10

    A journal of my progress in python as a newbie with zero experience in coding and im 13
    Day 1 10:40
    Day 2 34:02
    Day 3 42:57
    Day 4 59:55
    (I forgot the exact time stamps before day 4 so they are inaccurate)
    Day 5 1:07:45

  • @boi6140
    @boi6140 3 месяца назад +165

    teaching an entire coding language for free in one video is insane, God bless this man.

    • @Monkey-fonky
      @Monkey-fonky 2 месяца назад +8

      its beginner

    • @jagmbaksvshsh
      @jagmbaksvshsh 2 месяца назад +3

      @@Monkey-fonky is that bad ? where can I learn more

    • @Napolitano-Lazo
      @Napolitano-Lazo 2 месяца назад

      ​@Monkey-fonky is it that bad bro u gotto explain

    • @buckslam007
      @buckslam007 2 месяца назад

      to think i was gonna pay mosh $19 ..

    • @Monkey-fonky
      @Monkey-fonky 2 месяца назад

      @@Napolitano-Lazo not necessarily but if you want to go pro u need to use a course or smth else

  • @agkhwbbw9830
    @agkhwbbw9830 Месяц назад +25

    Thank you very much! There are many of us who can’t afford all the courses and get easily overwhelmed by the content. But nowadays it’s practically free to learn a big chunk of the things you want to learn because of people like you!

  • @ChessAnalysis-ys8cj
    @ChessAnalysis-ys8cj 4 месяца назад +3113

    Bro casually dropped 12 hours of content for free

    • @enriquepasa
      @enriquepasa 4 месяца назад +96

      Better content than paid schools do, too (y)

    • @Neonight0
      @Neonight0 4 месяца назад +46

      This guy is goated fr.

    • @kingdoom5022
      @kingdoom5022 4 месяца назад +51

      > release amazing content for free
      > have gigachad profile pic
      Truly lives up to his PFP

    • @pedro9553
      @pedro9553 4 месяца назад

      What do you call an economy where an education is given for free? Is it socialism? Whatever it is this guy and freecodecamp is part of that movement.

    • @CatholicWeeb
      @CatholicWeeb 4 месяца назад +8

      Cause he's that Based!

  • @eugénie-w3v
    @eugénie-w3v 3 месяца назад +77

    i really struggle with my sleep schedule but your voice helps me fall asleep in no time. thank you so much, i love your channel (i also learned basics of c++ following your course, i mean i dont only sleep)

  • @UkashaRBX
    @UkashaRBX 21 день назад +18

    Here is my journey to finish this course as a 11 year old!:
    day 1: 32:41
    day 2: 1:00:05
    day 3: 1:39:00
    day 4: 1:52:00
    day 5: 2:23:00
    day 6: 2:50:00

    • @Dum_science
      @Dum_science 21 день назад +2

      Let's finish this

    • @r4infall431
      @r4infall431 18 дней назад

      come back bro trust

    • @MSB1501
      @MSB1501 11 дней назад

      Keep up the great work. If you have such realistic plans from this young age, you have a very promising future by the Grace of God.

    • @Milkman_thesecond
      @Milkman_thesecond 10 дней назад

      come back bro i am also 11

    • @helium269c2
      @helium269c2 10 дней назад +1

      @Milkman_thesecond lmao I'm 21, just finished my first programming course at a top 100 university in both python and java you got this

  • @BuffBuddiesLounge
    @BuffBuddiesLounge 11 дней назад +3

    Day 1: 01:05:00
    Day 2: 01:30:00
    Day 3: 01:46:35 (did a rest day, was busy with life)
    Day 4: 02:45:21
    Day 5: 03:20:50

    • @negan699
      @negan699 5 дней назад +1

      where are you bro

    • @BuffBuddiesLounge
      @BuffBuddiesLounge 5 дней назад

      ​@@negan699​@negan699 I did a 1 day stop to work in a side project on python I am making a tiny Text RPG, I could drop the code if you wanna check it out ahahahhaha

    • @BuffBuddiesLounge
      @BuffBuddiesLounge 5 дней назад

      @negan699 ​ I did a 1 day stop to work in a side project on python, I am making a tiny Text RPG, I could drop the code if you wanna check it out :)

    • @BuffBuddiesLounge
      @BuffBuddiesLounge 5 дней назад

      @@negan699 I was busy yesterday working on a small python project on the side, I am doing a tiny text rpg.
      I can send you the code if you would like to check it out :)

    • @JohnSmith-u6j
      @JohnSmith-u6j День назад

      get back to it rn. u got this

  • @gianluur6650
    @gianluur6650 4 месяца назад +34

    at the time of your first python tutorial i didn’t even know what an IDE was, now i’ve created a compiler for my programming language. thanks bro.

    • @spongybfdi8876
      @spongybfdi8876 3 месяца назад +1

      wow

    • @bagastian3125
      @bagastian3125 2 месяца назад +1

      time flies fast isn't it?

    • @Aymanne-io6vb
      @Aymanne-io6vb 6 дней назад

      My man, don't stop learning and growing.Wish you all the best

  • @jakethepancake
    @jakethepancake 3 месяца назад +115

    Just got back into coding only to find an updated version of your tutorial. Awesome!

    • @microcybs
      @microcybs 3 месяца назад +2

      real

    • @dihaozhan
      @dihaozhan Месяц назад

      i have been watching the old one, but haven't finished it (have been learning very inconsistently), should finish learning the old one and then come back to learn what i don't know or should i just watch this one?

    • @LeobenKarl
      @LeobenKarl Месяц назад +1

      ​@@dihaozhanI would say this one, im not sure with the differences with the old one and the new one

    • @Tharun-wk6rj
      @Tharun-wk6rj Месяц назад

      @@dihaozhan watch this one mate

    • @dihaozhan
      @dihaozhan Месяц назад

      @@Tharun-wk6rj oh ok thanks

  • @kofeblok6187
    @kofeblok6187 5 дней назад +1

    Noting my python time stamps for each day at 16:
    Day #1: 32:42
    Day #3: 1:39:08

  • @Cipoil
    @Cipoil Месяц назад +6

    adjective1 = input("Type a adjective: ")
    adjective2 = input("Type another adjective: ")
    adjective3 = input("Type one more adjective: ")
    noun1 = input("Type a noun: ")
    verb1 = input("Type a verb ending in \"ing\": ")
    print(f"Today I went to a {adjective1} town")
    print(f"In the town, I saw a {noun1}")
    print(f"{noun1} was {adjective2} and {verb1}")
    print(f"I was {adjective3}!")

  • @ThihaTheCoder
    @ThihaTheCoder 4 месяца назад +790

    1 like = 1 hour of coding
    Edit: 790 hours💪 , thanks for the motivations

    • @SupriyoDas-sp1yz
      @SupriyoDas-sp1yz 4 месяца назад +2

      Done

    • @SpreakYT
      @SpreakYT 4 месяца назад +22

      We know you will not actually do it, you're just doing it for the likes

    • @jwfans3127
      @jwfans3127 4 месяца назад +13

      🧢🧢cap, you doing it for likes🧢🧢

    • @Tuxcat-v6f
      @Tuxcat-v6f 3 месяца назад

      What are you coding?

    • @skillE_official
      @skillE_official 3 месяца назад +4

      I don't think he's lying when he actually comes back to edit the comment...

  • @GJYT23
    @GJYT23 5 дней назад

    I used this instead for 50:37
    import math
    a= float(input("What is the value of a ?"))
    b= float(input("What is the value of b? "))
    hypotenuse = math.sqrt ((a **2 ) + b **2)
    print(f'the value of hypotenuse is {hypotenuse}')

  • @victorr-kn4so
    @victorr-kn4so 3 месяца назад +13

    I'm taking one of my 3 final courses before I graduate this December with my bachelors degree. It's a Senior project that will focus on building a program that will retrieve data to build a business model for some miscallaneous company. I'm not completely clear on the specifics since this class just started last week. But, I do know that we will be using Pyhon exclusively. And I suck at programming. So I am going to take full advantage of your course. I want say thank you for your efforts and time.

  • @ExplosiveOldMan
    @ExplosiveOldMan 4 месяца назад +16

    Your C++ course helped me a lot when I was trying to get into the language for exams in technician/bachelor professional school, and I skimmed through your older python course to get better at a language I usually use to solve projects that come along. Looking forward to these 12 hours of content, thank you!

  • @mrlemflem
    @mrlemflem Месяц назад +11

    3:19:27 heres my try at a very neat, professional looking version (sorry for the unoptimized spaghetti code lmfao)
    menu = {"Popcorn":3.50, "Soda":1.50, "Candy":1, "Pizza":9}
    cart = []
    total = 0
    print(f"{"Menu":-^17}")
    for key,value in menu.items():
    print(f"{key:10} ${float(value):> 5.2f}")
    print("-"*17)
    while True:
    user_inp = input("What item would you like? (q to quit) ")
    if user_inp.lower() == "q":
    break
    elif menu.get(user_inp.lower().capitalize()):
    print(f"{user_inp.lower().capitalize()} added to menu.")
    cart.append(user_inp.lower().capitalize())
    else: print(f"{user_inp.lower().capitalize()} is not a valid menu item.")
    for food in cart:
    total += menu.get(food)
    print()
    print(f"{"Order":^26}")
    print("-"*26)
    for items in cart:
    print(f"{items:19} ${menu.get(items):>.2f}")
    print()
    print(f"Your total is: ${total:> 9.2f}")
    print("-"*26)

    • @Tungthegamer-e7i
      @Tungthegamer-e7i Месяц назад +4

      I just optimized it by a bit, would you like to see it?
      menu = {"popcorn":3.50, "soda":1.50, "candy":1, "pizza":9}
      cart = []
      total = 0
      print(f"{"Menu":-^17}")
      for key,value in menu.items():
      print(f"{key.capitalize():10} ${value:> 5.2f}")
      print("-"*17)
      while True:
      user_inp = input("What item would you like? (q to quit) ")
      user_inp = user_inp.lower()
      if user_inp == "q":
      break
      elif menu.get(user_inp):
      print(f"{user_inp.capitalize()} added to menu.")
      cart.append(user_inp)
      else:
      print(f"{user_inp.capitalize()} is not a valid menu item.")
      for food in cart:
      total += menu.get(food)
      print()
      print(f"{"Order":^26}")
      print("-"*26)
      for items in cart:
      print(f"{items.capitalize():19} ${menu.get(items):>.2f}")
      print(f"Your total is: ${total:> 9.2f}")
      print("-"*26)

    • @bl4nktrill781
      @bl4nktrill781 7 дней назад

      any idea why the total += menu.get(user_inp) does not work for me? A TyperError keeps popping up when i go to break the While Loop

    • @bl4nktrill781
      @bl4nktrill781 7 дней назад

      this is my code:
      menu = {"Pizza": 2.99,
      "Hot Dog": 1.50,
      "Popcorn": 2.50,
      "Fries": 1.99,
      "Soda": 1.50,
      "Freeze": 1.99}
      cart = []
      total = 0
      breaker = "q"
      print(f"{"Menu":-^17}")
      for key, value in menu.items():
      print(f"{key:10}: ${value:.2f}")
      print("------------------------")
      while True:
      user_inp = input("Select an item (q to quit)").lower()
      if user_inp == breaker:
      break
      elif menu.get(user_inp.lower().capitalize()):
      cart.append(user_inp)
      else:
      print(f"{user_inp.lower().capitalize()} is not a valid item.")
      for user_inp in cart:
      total += menu.get(user_inp)
      print()
      print(f"{"Order":^26}")
      print("-"*26)
      for items in cart:
      print(f"{items.capitalize():19} ${menu.get(items):>.2f}")
      print(f"Your total is: ${total:> 9.2f}")
      print("-"*26)

    • @Tungthegamer-e7i
      @Tungthegamer-e7i 6 дней назад

      @@bl4nktrill781 The user_inp is lower case while the dictionary is written in capitalize.
      Hence it will return None when trying to get the price.
      Next time if you want to see what when wrong. You can try printing out user_inp, menu.get(user_inp),etc work for me.
      Btw I really love using 'q' for breaker cuz it help a lot with readability.

  • @VikrantMehra-z8k
    @VikrantMehra-z8k 11 часов назад +1

    Day 1: 1:00:07 - 8. Calculator Program

  • @kingdoom5022
    @kingdoom5022 4 месяца назад +94

    > release amazing content for free
    > have gigachad profile pic
    Truly lives up to his PFP

  • @Parv-p2y
    @Parv-p2y 3 месяца назад +18

    at 1:09:59 for temp conversion program, i have a better version
    temp = float(input("Current temperature: "))
    unit_1 = input("current unit (K, C, F): ")
    if unit_1 == "K":
    unit_2 = input("converted unit(C, F): ")
    if unit_2 == "C":
    temp_1 = temp - 273.15
    print(f"temperature in C is = {temp_1}")
    if unit_2 == "F":
    temp_1 = ((temp - 273.5) * (9/5)) + 32
    print(f"temperature in F is = {temp_1}")
    elif unit_1 == "C":
    unit_2 = input("converted unit(K, F): ")
    if unit_2 == "K":
    temp_1 = temp + 273.15
    print(f"temperature in K is = {temp_1}")
    if unit_2 == "F":
    temp_1 = (temp * (9/5)) + 32
    print(f"temperature in F is = {temp_1}")
    elif unit_1 == "F":
    unit_2 = input("converted unit(K, C): ")
    if unit_2 == "K":
    temp_1 = ((temp - 32) * (5/9)) + 273.15
    print(f"temperature in K is = {temp_1}")
    if unit_2 == "C":
    temp_1 = (temp - 32) * (5/9)
    print(f"temperature in C is = {temp_1}")
    this is more detailed program and user will have more control over the output he/she wanted, also it will help new programmers to get a better control over syntax

    • @Davey-i6y
      @Davey-i6y 3 месяца назад +1

      Here's a shove it down into few lines as possible version, used as much as I learned from the video:
      unit_list = ["K", "C", "F"]
      conversion = ["KC", "number - 273.15", "KF", "(number - 273.15)*1.8+32","CF", "number*1.8+32" ,"CK","number+273.15","FC","(number-32)*5/9","FK","(number-32)*5/9+273.15"]
      temp = input("Current temperature (K,C,F): ").upper()
      number = float(temp[0:len(temp)-1])
      unit_list.remove(temp[len(temp)-1])
      unit_c = input(f"What unit do you want to convert to?({unit_list[0]},{unit_list[1]}): ")
      print(f"The converted value is {eval(conversion[conversion.index(temp[len(temp)-1]+unit_c)+1]):.2f}°{unit_c}")
      It's currently at 7 lines of code, but I'm sure someone could bring it down lower.

    • @Davey-i6y
      @Davey-i6y 3 месяца назад

      input for temp needs to be #unit for example: 234.1F or 32C.
      If you shove in the number expression into the conversion list where ever the string number appears, then the code gets reduced down to 6, but not sure what else I could do 😅

  • @darksoul6482
    @darksoul6482 2 месяца назад +17

    Personal Tutorial Logbook.
    Day-1 (12 October 2024, 3:40 AM)
    00:00 - 1:10:00
    Practice Break (1 Day)
    Day-2 (14 October 2024, 2:57 AM)
    1:10:01 - 2:23:00
    Day off (Learning Web Developing)
    Day off (Learning Web Developing)
    Practice Break(1 Day)
    Day-3 (17 October 2024, 8:14 AM)
    2:25:00 - 3:03:00
    Day off (Learning Web Developing)
    Day off (Learning Web Developing)
    Day off (Learning Web Developing)
    Break (Personal Reason)
    Practice Break (1 Day)
    Day Off (Learning Python for Data Science)
    Wish me luck guys. I need to learn python because I selected AI and Data Science for University CS Major.

  • @KarimSoliman-h8c
    @KarimSoliman-h8c 5 дней назад

    This is for me to track my progress
    Day 1: 21:15
    Day 2: 46:30
    Day 3: 1:00:06
    Day 4: 1:21:28
    Day 5: 1:27:00

  • @thebuddys47
    @thebuddys47 3 месяца назад +26

    I'm 12 yrs old and I decided to learn python coding.
    your video is helping me a lot!! Such a simple and crisp explenation, and there's even programs in between to practice. It's just perfect!
    12 hours of coding, and it's free and so good! Thanks a lot for this 🥳😃😃

    • @arkstayer
      @arkstayer 22 дня назад +2

      13 yr old here :)

  • @EnTix_7
    @EnTix_7 Месяц назад +6

    #Calculator
    while True:
    operator = input('Enter an operator please (+, -, *, / ): ')
    if operator in ('+', '-', '*', '/'):
    break
    else:
    print('Invalid operator, choose one of the following: +, -, *, /')
    num1 = float(input('What is the first number? '))
    num2 = float(input('What is the second number? '))
    if operator == '+':
    print(round(num1+num2))
    elif operator == '-':
    print(round(num1-num2))
    elif operator == '*':
    print(round(num1*num2))
    elif operator == '/':
    print(round(num1/num2)) round()

    • @aronix-o7
      @aronix-o7 Месяц назад +3

      This one under is a lot better.
      def calculator():
      while True:
      expression = input("Enter expression: ")
      # Validate and evaluate
      try:
      result = eval(expression)
      print("Result:", result)
      except Exception as e:
      print("Error:", e)
      calculator()
      Just think better

    • @nosiest
      @nosiest Месяц назад +2

      @@aronix-o7 He's learning, let him learn. You don't have to ruin other people's fun.

    • @aronix-o7
      @aronix-o7 Месяц назад +2

      @@nosiest huh i didnt say anything bad
      i just told him to not overcomplicate things
      Thats a valid advice in the future

    • @nosiest
      @nosiest Месяц назад

      @@aronix-o7 "Just think better"
      You could've worded it a bit better. That's not advice, that's just straight up saying he's not thinking straight lmao

    • @aronix-o7
      @aronix-o7 Месяц назад +2

      @@nosiest english is not my first language
      you speak english because thats the only language you probably know
      i speak english because thats the only language you understand
      we are not the same

  • @myaccount-u4m
    @myaccount-u4m 4 месяца назад +585

    For Every Like i Will Do 1 Line Of Code

    • @xyves6327
      @xyves6327 4 месяца назад +7

      only 1? pfffff

    • @Genesis-rg6eg
      @Genesis-rg6eg 4 месяца назад +2

      Bro...I literally just downloaded your other one why you do dis 😭😭😭😭

    • @DrEggCake
      @DrEggCake 4 месяца назад +8

      make it 1000 lines of code per like

    • @An_ony_mous
      @An_ony_mous 4 месяца назад +1

      Even I can do that. 😂

    • @josueramirez7247
      @josueramirez7247 4 месяца назад +5

      What is your program going to be? Multiple print statements saying Hello World? 😂

  • @RodriqueSharrier
    @RodriqueSharrier День назад +1

    starting my journey today thanks bro👍

  • @fridaynightfistfights4845
    @fridaynightfistfights4845 Месяц назад +4

    I am in the 1st quarter of this thing and just wanna say much appreciated for sharing your knowledge. Zero beginner learner here.

  • @fen00b__99
    @fen00b__99 22 дня назад +4

    11:52:26 "Ok everybody we near the end"
    Thanks for your dedication bro!

  • @befunky1234
    @befunky1234 19 дней назад +6

    bro just gave us quality education and thought we wouldn't notice

  • @DeFirestarRX
    @DeFirestarRX День назад

    This comment is to remind myself to finish this tutorial no matter what.
    First sitting: 3:18 Pm to 3:57 Pm ending at: 38:04
    Second sitting: 4:31 Pm to 6:53 pm ending at 1:14:07
    Third sitting: 3:34 Pm to 4:06 pm ending at 1:35:00

  • @sk7262
    @sk7262 3 месяца назад +7

    MASSIVE THANKS! learning python ATM and some stuff just needed another presentation to click. your presentation method is excellent ==A+!

  • @doublevproduction
    @doublevproduction 4 месяца назад +6

    Bro just posts 12 hour long video for free and it's a fundraiser.
    Please show this guy some love, so he can continue helping everybody!

  • @jwfans3127
    @jwfans3127 4 месяца назад +80

    This Dude is the Best dropping a 12 hour coarse and taking the time where your not left out, he deserves another 10M subs
    if you want to finish this in 12 days you can watch an hour each, if you wanna finish it in 24 days you can watch 30 minutes each, if you wanna finish it in 6 days you can watch 2 hours each if you wanna finish it in my way you can try my steps
    day 1: 00:00 - 51:44
    day 2: 51:44 - 1:39:08
    day 3: 1:39:08 - 2:53:59
    day 4: 2:53:59 - 3:32:37
    day 5: 3:32:37 - 3:52:12
    day 6: 3:52:12 - 6:07:25
    day 7: 6:07:25 - 6:32:32
    day 8: 6:07:25 - 6:44:50
    day 9: 6:44:50 - 9:46:28
    day 10: 9:46:28 to 12:00:00
    *GOOD JOB YOU FINISH IT IN 10 DAYS*
    oh by the way dont try 15 minutes a day cuz it will take a full 48 days just to finish it
    and also dont try 1 chapter a day cuz thats a full 77 days
    so the best for you is between 30 - 45 mins or mine or 30 mins a day or 1 hour a day or 2 hours a day or 3 hours a day or 4 hours a day, its really up to you, i recomend 2- 4 chapters a day too is really up to you!

    • @Sjjeien
      @Sjjeien 4 месяца назад +7

      Excellent mate.
      But the problem is every session takes more than than 1 hour. We as a beginners would replay a lot. Hence sometimes we got devastated even though python was simple than other rivals...
      I hesitated and drowned but still i am learning

    • @jwfans3127
      @jwfans3127 3 месяца назад +1

      @@Sjjeien its okay i am begginer too like you i am stiil learing i am just trying to help people as best as i can

    • @jwfans3127
      @jwfans3127 3 месяца назад

      @@Sjjeien but else if you wanted it not too much you watch every 15 or 30 mins everyday, i also already displayed that in my comment under the schedule

    • @J4ve
      @J4ve 3 месяца назад

      @@Sjjeien im taking a bachelor's in computer science and i still keep replaying bro code's programming language courses as a review for my data structures and algorithms course, mastering the basics is key to be a better programmer so keep it up dude 💪💪💪

    • @not_m
      @not_m 3 месяца назад +2

      I'm gonna watch it all like a psychopath

  • @kittyme127
    @kittyme127 3 месяца назад +5

    19:36 - At this point, i didn't know why i had a type error, until i saw i forgot to type age = str(age) 😅

  • @SoulReaper595
    @SoulReaper595 День назад

    operator = input("Enter an operator(+ - * /)")
    num1 = float(input("Enter the 1st number: "))
    num2 = float(input("Enter the 2nd number: "))
    print(num1 + num2)

  • @onbireleven
    @onbireleven 3 месяца назад +5

    i try to learn python for a while. And not gonna lie, you teach me more than any other tutor. Thanks Bro!

  • @TextCraze
    @TextCraze 4 месяца назад +6

    Just when I wanted to learn python i find a 12 hour video of python by bro code. Damn I am soo happy. Also your courses are amazing

  • @gbark
    @gbark 2 месяца назад +8

    As everyone here has already commented; you are the greatest! Clear, concise, entertaining, and no BS - just teaching by example. Great stuff. Unfortunately I haven't been able to figure out how to copy the code that you use for some of the lessons when you comment that you'll post a link in the video description. Color me embarrassed to have to ask, but what am I missing?

    • @doriansantiago8328
      @doriansantiago8328 Месяц назад +1

      go to his python playlist and look for the project he is doing and in the video description for that project it has the code

    • @felipetomaz1087
      @felipetomaz1087 14 дней назад

      @@doriansantiago8328 thanks

  • @MSD-mu6mz
    @MSD-mu6mz Месяц назад

    A better way to write the code at 26:26 lol
    #calculate area of an rectangle
    print("""this program rearranges and finds length, width or area of rectangle
    if you dont have any of the values enter 0 please""")
    w = int(input("enter the width of the rectangle: "))
    l = int(input("enter the length of the rectangle: "))
    a = int(input("enter the area of the rectangle: "))
    if type(a) and type(l) and type(w) is int:
    if a == 0:
    answer = w*l
    print(f"the area of the rectangle is {answer}")
    quit()
    elif w == 0:
    answer = a/l
    print(f"the width of the rectangle is {answer}")
    quit()
    elif l == 0:
    answer = a/w
    print(f"the length of the rectangle is {answer}")
    quit()
    else:
    print("error restart the code please")

  • @usufphatan
    @usufphatan 3 месяца назад +15

    Name = "GiggaCHAD"
    Kg = 78
    Height = 7.9
    He is a ALPHA_MALE = True

  • @markdeckard7651
    @markdeckard7651 3 месяца назад +5

    Awesome presentation, really appreciated! Sharing knowledge is making the world a better place.

  • @its_Lucky6211
    @its_Lucky6211 4 месяца назад +35

    You are actually the best Content Creator ever, thanks to you i learned HTML, CSS, JavaScript and Python, all of it while enjoying your deep charming voice, AND FOR FREE!

    • @deepnar_18
      @deepnar_18 3 месяца назад +1

      i have only seen his python and mysql vids, are the rest good?

    • @its_Lucky6211
      @its_Lucky6211 3 месяца назад

      @@deepnar_18 absolutely! probably the best courses rn

    • @appsentric
      @appsentric 3 месяца назад +1

      bro love ?

  • @ninjagoistheGOAT
    @ninjagoistheGOAT 13 дней назад +1

    1:00:02 Finally done 1hr in 2 days due to school.
    Will try to finish by end of the year.

  • @hamolovesmc
    @hamolovesmc 4 месяца назад +5

    who thought you could learn things that you can earn money from for free Thanks Bro code 💗💗💗💗

  • @Actuallykatsuyori
    @Actuallykatsuyori 3 месяца назад +8

    user_name = "bro code"
    year = 2024
    pi= 3.14
    is_admin = True
    print(f"hello your username is {user_name}")
    print(f"the number of pi is {pi}")
    if is_admin:
    print(f"you are the admin")
    else:
    print(f"you are not the admin")
    output:
    hello your username is bro code
    the number of pi is 3.14
    you are the admin

    • @supergamergrill7734
      @supergamergrill7734 3 месяца назад +2

      I'll put my stuff here, because why not.
      user_name = "That guy"
      year = 2024
      pi = 1987
      is_admin= True
      print("Your username is {user_name}")
      print("Your corresponding pi number is {pi}")
      if is_admin
      print("Congatulations for being accepted into the {year} team")
      else:
      print("Sorry, but you weren't accepted into becoming admin. Please try again later")

    • @AdedayoEnoch
      @AdedayoEnoch 3 месяца назад

      ​@@supergamergrill7734 Ill also put my stuff on here cuz why not...
      user_name = "badboy"
      year = "2009"
      pi = 3.14
      is_admin = True
      print(f" Hello, I'm {user_name}. I was born in {year} and I want to answer the question. Is pi equal to {pi}?: {is_admin}💀)

  • @killersnake1901
    @killersnake1901 4 месяца назад +63

    no way you just dropped a 12hour video on python the second i opened vs code, are you in my walls

    • @Jjdogstein
      @Jjdogstein 4 месяца назад +6

      He just has that bro sense

    • @deepnar_18
      @deepnar_18 3 месяца назад

      this has happened several times with me where i have thought of doing something new or restarting something after a break and i dont know how or why but suddenly a video regarding the same is uploaded by someone i follow

    • @UniversalOdditiesBlack
      @UniversalOdditiesBlack 3 месяца назад

      Its the collective bro-conscious

  • @REXITOR
    @REXITOR 25 дней назад +2

    You are the best teacher in the world. I am really glad to have met you. I am looking forward to more of your teachings. You have helped me a lot. Thank you very much.

  • @Nouruddin11
    @Nouruddin11 3 месяца назад +14

    I was just gonna give up the shitty mosh hamedani tutorial that i dont get anything of and give up learning python as a whole then i saw this legendary vid coming outta nowhere, bro saved me

  • @thopsgaming6805
    @thopsgaming6805 3 месяца назад +15

    Explaining every language like a master for free in a fundraiser. The real gigachad.

  • @lokilokesh8262
    @lokilokesh8262 4 месяца назад +9

    This the best time that you posted for me❤❤❤
    I started my engineering for computer science yesterday was my first class and tomorrow is a lab session
    Thank you so much for giving out this information for free, we need more people like you❤❤❤

    • @24sLight
      @24sLight 3 месяца назад

      How mamy hours do u study and learn in class

  • @livienplays7036
    @livienplays7036 День назад

    here is my progress so far (will keep editing untill i finish it ) :
    sitting 1 : 1:17:01
    sitting 2 : 2:38:01

  • @ThorAvenger-fb2nh
    @ThorAvenger-fb2nh 4 месяца назад +128

    for every like i'll do 10 lines of code

  • @Puppe-sx2hq
    @Puppe-sx2hq 2 месяца назад +6

    I left a random comment. Doing this for the winter arc that will definetely fail on 4th day

    • @ttenji8999
      @ttenji8999 2 месяца назад +3

      delusion shant waiver

    • @Onyekwenachinonso
      @Onyekwenachinonso 2 месяца назад +1

      We have to push it together, I'm also doing this for winter arc

    • @Puppe-sx2hq
      @Puppe-sx2hq 2 месяца назад +3

      @@Onyekwenachinonso good move bro. I already knew a thing or two about python so the first 2 hours was easy. Now the hard part begins tmr. More learning less easy

  • @ClownECrowns
    @ClownECrowns 2 месяца назад +12

    Is_Bro: True
    If Is_Bro:
    Print("Thank you for this video")
    Else:
    Print("Sad")

    • @christmascountdown1-k6d
      @christmascountdown1-k6d 2 месяца назад +4

      Corrected Version:
      is_Bro = True
      # If is_Bro is set to True it will print Thank you for this video
      # and If false it will say sad
      if is_Bro:
      print("Thank you for this video")
      else:
      print("Sad")

    • @ClownECrowns
      @ClownECrowns 2 месяца назад

      @@christmascountdown1-k6d is_Name = "SpiritPredictor"
      Print(f "Thank you {is_Name}")

  • @omprakash.b58
    @omprakash.b58 4 дня назад +2

    day- 1 - 00:00:00 to 04:27:00

  • @myAim_f....
    @myAim_f.... 3 месяца назад +5

    I want to request you to please continue the c++ series with more conent. Like use QT with C++,

  • @LAZK-h5g
    @LAZK-h5g 3 месяца назад +8

    python is weak but better than nothing am i right?

    • @LAZK-h5g
      @LAZK-h5g 3 месяца назад +1

      i mean uhhhhhh revealing what i mean at 3 likes

    • @anjanajha693
      @anjanajha693 2 месяца назад

      Soo reveal

    • @ClownECrowns
      @ClownECrowns 2 месяца назад

      REVEAL

  • @rarexrt
    @rarexrt 2 месяца назад +7

    first_name = "Rare"
    age = 17
    gpa = 4.8
    is_cool = True

  • @yacineamy
    @yacineamy 4 дня назад +1

    This is just for me to track where I am in the video
    sitting 1: 51:48
    sitting 2: 1:14:01
    sitting 3: 1:21:43

  • @Marsmah-s3k
    @Marsmah-s3k 2 месяца назад +6

    This guy loves PIZZA for sure

  • @jwfans3127
    @jwfans3127 3 месяца назад +11

    bro is NOT a CHAD...
    but he is A *GIGA* CHAD!

  • @amirhosseinbabaie843
    @amirhosseinbabaie843 4 месяца назад +32

    for each like i will write 5 lines of code

  • @ISCOCounter-Strike
    @ISCOCounter-Strike 4 часа назад

    adjective1 = input("enter an adjective (description): ")
    noun1 = input("enter a noun (person, thing): ")
    adjective2 = input("enter an adjective (description): ")
    verb1 = input("enter a verb ending with 'ing': ")
    adjective3 = input("enter an adjective (description): ")
    print(f"today i went to a {adjective1} learning centre.")
    print(f"there i saw a {noun1}.")
    print(f"{noun1} was {adjective2} and {verb1}.")
    print(f"i was {adjective3}.")

  • @lahcenkhmaissi2353
    @lahcenkhmaissi2353 3 месяца назад +10

    36:43 skibidi really?

  • @boma5145
    @boma5145 3 месяца назад +5

    #Assignment of 15:59
    variable > User_name = "Jack"
    int = 2024
    float = 23.2
    boolean =True

  • @Nees-Youtube
    @Nees-Youtube 25 дней назад +6

    even his pfp isnt as great as him

  • @Japanesewarlord
    @Japanesewarlord 2 месяца назад +6

    1 like = 1 hour of studying

  • @clarencelucas1256
    @clarencelucas1256 3 дня назад +2

    commenting to support, new to coding this looks crazy to get into wish me luck!

  • @christmascountdown1-k6d
    @christmascountdown1-k6d 2 месяца назад +40

    1 like = 100 lines of code

  • @NeilYarbrough
    @NeilYarbrough 4 месяца назад +70

    1 like = 5 push ups

    • @MrDominic600
      @MrDominic600 3 месяца назад +3

      *5 projects

    • @MrDominic600
      @MrDominic600 3 месяца назад +1

      @@asiamies9153 I’m really hoping you didn’t take my comment literally

    • @Sjjeien
      @Sjjeien 3 месяца назад

      Still alive or not?

    • @MyArtFile_
      @MyArtFile_ 2 месяца назад

      He died type in the projects 😅😢

  • @CaspianProject
    @CaspianProject 12 дней назад +1

    emotion = "I feel my anxiety drop as I watch Bro Code"
    starRating = 10
    focusRate = 9.8
    satisfied = True

  • @TanTan14332
    @TanTan14332 11 дней назад

    Day 1: 1:27:07
    Day 2: 2:45:21
    Day 3: 3:03:57 didn't do much was sick

  • @ItsReallyViper
    @ItsReallyViper 7 дней назад +1

    Im 12 years old and at 2:22:24 thanks for the easy tutorial! Its very easy to understand thanks!!

  • @MADHAVVS-z3c
    @MADHAVVS-z3c 11 дней назад

    Day 01 : 1:26:24
    Day 02 : 1:59:56
    Day 03 : 2:37:07
    Day 04 : 3:52:16
    Day 05 : 6:32:35
    Day 06 : 8:29:01
    Day 07: 8:48:00

  • @MrPuzzoncello
    @MrPuzzoncello Месяц назад +2

    This is THE absolute best channel for beginners hands down

  • @Danjiu2009
    @Danjiu2009 14 дней назад +1

    Dang, just commenting to support. This man dropped 12 hours of content and then I looked up to see he raised eight-and-a-half thousand dollars for cancer research. Wish you the happiest of lives man!

  • @MineONite
    @MineONite 26 дней назад +1

    I love this guy. Started learning python this hear for school and this has been so useful. Thank you man :D

  • @amanrai9047
    @amanrai9047 13 дней назад +1

    Bro you did what any Real Bro would do, helping a ton of other Bros.

  • @amitmohanty4788
    @amitmohanty4788 6 дней назад

    This is to track my record pls ignore it :D
    Sitting One 51:46
    Sitting Two 1:39:07

  • @cycloneshiimi5316
    @cycloneshiimi5316 8 дней назад +1

    I’m making it my goal to finish this course regardless of all the struggles I deal with daily.
    Here is the first variable assignment:
    shoe_size = 32
    eligible_to_vote = True
    eye_color = “brown”
    electricity_units = 20.43

    • @user-sp5lo8qj5v
      @user-sp5lo8qj5v 7 дней назад

      Good luck bud, I believe you can make it. Work hard, take breaks, and treat yourself along the way. You can do this! 🔥❤✨

  • @mona-un1wo
    @mona-un1wo 2 дня назад

    You had me at 'I don't like boring introductions go download this now' lol
    Goal: complete course in 12 weeks!
    Progress Tracking
    WEEK ONE
    0-8:40

  • @CuriousDan_
    @CuriousDan_ 13 дней назад

    D1 - 2:37:20
    D2 - 3:11:33
    D3 - 3:42:12
    D4 - 3:54:23

  • @SewerRat-mw4jf
    @SewerRat-mw4jf 28 дней назад +1

    Oh my goodness. A whole 12 hour course? *FOR FREE?* insane dedication man. Earned a sub, like, and this comment too! You need more attention

  • @YaSplootzYT-h2t
    @YaSplootzYT-h2t 24 дня назад +2

    string: "lasagne"
    integer: 4
    float: 4.6
    boolean: true
    probably only one who did tgis lol