Lists & Tic Tac Toe Game - Python 3 Programming Tutorial p.3

แชร์
ฝัง
  • เผยแพร่เมื่อ 11 ก.ย. 2024
  • Learning about lists and beginning our Tic Tac Toe project!
    Playlist: • Learning to program wi...
    #python #programming #tutorial

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

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

    i was on the verge on sleeping 5th time while learning programming, but then i stumbled upon your tutorials. now i want to learn more every second!

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

    My AdBlock was turned on. Before I watched the video. After Watching the video, I turned it off. And watched 2 full ads of 2-2 minute each, without skipping. Your teaching style is best! And I just didn't want to take it for free. I will definitely Donate or help you as soon as I get my first job!

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

    As a newbie who has no experience in programming, your tutorial is way way better than any other code camps or MOOC. For the first time, I kinda know what a real software engineer is doing on the other end.

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

    Crazy timing! I just completed a Triplebyte interview that offered this problem as part of the technical interview, with the goal being to make the computer try to lose. I wrote a neural network for it and look forward to this video

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

    This one mysterious yellow mug made my day. Lovely tutorials

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

    Hi, nice tutorials. One thing though, at minute 6:37 when creating the list of lists, there was no need to keep the last comma. I'm just saying that for those who might think that it's necessary.

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

      It shows syntax error without the commas in vs code :(

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

    Screw tic tac toe.
    Make tik tok if you wanna be relevant with the kids.

    • @Hamza-tq7dh
      @Hamza-tq7dh 4 ปีที่แล้ว

      lol

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

      Hey man thanks for all you do.

    • @paramorphix3486
      @paramorphix3486 4 ปีที่แล้ว

      bruh people just want to get a job he doesn't give a fuck about you or the kids

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

      haha this is funny because he made fun of the kids i get it its really funny

    • @supersaiyangoku11219
      @supersaiyangoku11219 3 ปีที่แล้ว

      this aged well

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

    Actual content starts from 4:15
    You're welcome..

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

    Oh man...i have so big problems to realise that this is actually really simple...thanks for your videos, hopefully ill learn to code a bit with your series...the best i have seen so far (and i have seen plenty, read books and considered myself already useless)

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

    I followed your previous basics video serious which was quite awesome, but this one is better. :-)

  • @aigames9866
    @aigames9866 3 ปีที่แล้ว

    You were deliberate with this tutorials, I really appreciate you, thanks Man.

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

    grid = [ [0,0,0] for i in range(1,n) ]

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

    I like your tutorials so much better than all the other well known sites and TH-cam playlists - you get to the point immediately and start with practice, then explain the theory behind it. 10/10 form me!

    • @DraxPC
      @DraxPC 5 ปีที่แล้ว

      Get to the point immediately? I'm 4 minutes in and this guy is still talking about problem solving. Jheez...

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

    A mug collection display is required!

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

    Man, you are the best, you make it super easy and fun
    Big thanks...❤❤❤

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

    Really great for beginners!!

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

    Your lectures are quite interesting

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

    you're THE BEST. Thank you very very very much for the tutorial!

  • @zequieca6093
    @zequieca6093 3 ปีที่แล้ว

    Thanks sentdex! Your explantion is easy to understand for a beginner like me! :)

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

    why does including "for row in game:" cause the grid to go 3x3?

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

      In tutorial #2, we learned that everything is an object in Python, i.e., string, tuple, and list are all objects.
      There, we had programming_languages = ( "Python", "Java", "C++", "C#" ) which is a tuple of strings, or in other words, an object of objects.
      When we wrote the code - for language in programming_languages: print( language ) - Python went through each small object ( string ) in the big object ( tuple ) and printed out that string. Here, *language* represented each string in the tuple. There were 4 strings in the tuple, therefore we had 4 lines printed.
      In this tutorial, we have game, a list of lists, which is again an object of objects.
      When we write - for row in game: print( row ) - Python goes through each small object, prints it, then goes to the next small object. Here, *row* represents each list in the bigger list. And, since there are 3 lists in the game list, we get 3 lines.

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

      Because we made 3 lists!
      First it prints the first one, then next line
      then the second one, then next line
      then the third, and then its done.
      For loops basically just print until they can't anymore(in this example it stops because theres no more to print)
      If he had only made one list, it would have all printed on the same line.

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

      the 'row' is confusing you, you can write any word there and it will reference one element in the variable 'game'

    • @babitakumari-ln1zb
      @babitakumari-ln1zb 5 ปีที่แล้ว +6

      @@kaunajbanerjee8526 Thanks that really helped :)

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

      @@prawtism oh okay thank you for this. That was what confused me lol

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

    Hopefully you'll teach us scalability unlike other tutorials, so that we'll know to apply the check method not only on 3x3 grid 😉

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

      be patient sir!

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

    I thought you're gonna do NEW LINE to make the 3x3 grid

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

    I love your mugs😊😊😊

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

    Thanks Sentdex for tutorials and this playlist, but I couldn't find any link to code while learning this.
    I have completed this entire series of Tic_Tac_Toe, link to the code is
    github.com/ganesh-deshmukh/cmd_line_Tic_Tac_Toe_Python

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

    Sent "python 3.7 to be specific" Dex

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

    My sublime doesn’t have the functions colored in. How can I make it happen so it looks like the code in these videos??? Thanks in advance

  • @diegowielandt7089
    @diegowielandt7089 5 ปีที่แล้ว

    you are a legend and a life giver, a god

  • @jk3089
    @jk3089 4 ปีที่แล้ว

    Great Sir! You spend only four minutes and twenty seconds just on telling us you are going to start "tic tac toe"
    Bravo.

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

    HOW does python know what row is... would you be able to say
    for column in game:
    print(column)
    ...is row a special command / code that is specific to using lists?

    • @howardhughes7491
      @howardhughes7491 5 ปีที่แล้ว

      To answer your question yourself you could simply run the code.
      But yes you can write -
      for column in game:
      print(column)
      and get the same output you get with -
      for row in game:
      print(column)
      python has no clue what "row" or "column" is and only uses it as a placeholder, just like python doesn't know what "game" means either.

  • @surimacroman
    @surimacroman 5 ปีที่แล้ว

    of course i love his tutorials and he is the best! but, why is there only ~300-400 likes on his videos?

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

    Nice that you are doing some noobs tutorials

  • @Sureshezhumalai
    @Sureshezhumalai 5 ปีที่แล้ว

    You are awesome!!!! Please continue the good work!!

    • @sentdex
      @sentdex  5 ปีที่แล้ว

      Will do!

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

    I got an error continuously like "The system cannot find the file specified" on Sublime text.. what's the solution?

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

    Could you have the premieres begin in 6 or 8 hours instead of 24 hours? At >12 hours you might as well release a tweet saying, “Part 3 coming tomorrow!”

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

      As soon as one's done, I set up the next one. It's every day at the same time for this series.

  • @pragyapandey2291
    @pragyapandey2291 3 ปีที่แล้ว

    in the last tutorial the output with or without parentheses was the same but here when i run the program without parentheses it shows indentation error why is that?should a tuple always have parentheses or are there cases for when to use it?? i am confused

  • @adithyanarain6815
    @adithyanarain6815 4 ปีที่แล้ว

    I tried using alphabets instead of 0. But I'm getting an error stating it is not defined. However, when I tried it using other numbers I'm getting the output. Can't I use alphabets ?

  • @RR-gw2uj
    @RR-gw2uj 5 ปีที่แล้ว +2

    This doesn't print anything in my terminal when I run it, even if I just do print(game). I'm using Visual Studio on Mac. Any ideas?

    • @zoloftdependant5246
      @zoloftdependant5246 4 ปีที่แล้ว

      are you using vscode? right click on your code and press "run python file in terminal". if it doesn't work from that, check your installation

    • @38Fanda
      @38Fanda 4 ปีที่แล้ว

      maybe your printer is out of ink

  • @javiernunez8431
    @javiernunez8431 3 ปีที่แล้ว

    If I get to video 5 (Which im sure I will based on these comments) I will join this channel sir

  • @therealg9542
    @therealg9542 5 ปีที่แล้ว

    Wow this one was pretty ok to make, i made a three player (player one, player 2, player one, opponent) and that took messed up my code after adding in a player 2 option lol

  • @jack_2024
    @jack_2024 3 ปีที่แล้ว

    this is probably a dumb question but I'm confused as to why the for loop row in game prints the 0 0 0 on a new row each time? can anyone help explain this please? i feels its a simple answer im just no comprehending. thnaks in advance for any help

  • @carel5554
    @carel5554 3 ปีที่แล้ว

    I wrote the 6 lines exactly like you did and it did nothing! I am using Jupyter notebook. Why?

  • @MRXno-ly7wf
    @MRXno-ly7wf 4 ปีที่แล้ว

    nice one man very informative

  • @HeelsBoots
    @HeelsBoots 4 ปีที่แล้ว

    I barely comment but tic-tac-toe in 9 minutes whoo cool

  • @Cat_Sterling
    @Cat_Sterling 5 ปีที่แล้ว

    Awesome! Btw, how many different funny cups do you have? I always see a new one in a video :D

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

      just slightly...OVER 9000!!!

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

    That discord profile img! 😎😂😁

  • @alphadesignsmarketing2179
    @alphadesignsmarketing2179 4 ปีที่แล้ว

    great sharing sir, I have a little issue in the final code, win code not showing the result after adding the value with game_board, but working fine with if we have assigned directly in-game list. I have the file to share, please let me know how I can share this with you. Thanks

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

    Sir, do we need to install python in our device system , in case we have vscode?????

  • @MohitSharma-gl6mo
    @MohitSharma-gl6mo 5 ปีที่แล้ว +5

    Keep up these premiers ..
    But can you do some around 30 min premiers...?

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

      The problem is that'd leave me with a 30 minute video after, and people don't like to watch the longer videos typically =/

  • @AbdulKareem-nu4zt
    @AbdulKareem-nu4zt 4 ปีที่แล้ว

    i am not getting the output as you show it in the video , can you please help

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

    How does python know what you are reffering to as rows?
    I didn't get that.

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

      It doesn't know. You can write any variable in the world - say your favorite food and print it. It will give you the result. check it in the code.

  • @shubhamsaurav1844
    @shubhamsaurav1844 3 ปีที่แล้ว

    how for loop gives output in seperate lines? Whats the reason?

  • @masoudmasoumimoghaddam3832
    @masoudmasoumimoghaddam3832 5 ปีที่แล้ว

    Hey SentDex, Can you make tutorial series about using python and docker system to build an app?
    Thanks.

  • @immortalized_onion
    @immortalized_onion 4 ปีที่แล้ว

    Couldn't we repeat print(game) three times and have that be a list of [0, 0, 0] ?

  • @ashiqulhassan3990
    @ashiqulhassan3990 4 ปีที่แล้ว

    thanks for your videos

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

    awesome

  • @sahilmehta_shimla
    @sahilmehta_shimla 4 ปีที่แล้ว

    sir do you have any tutorial from beginner to expert

  • @ruthpille585
    @ruthpille585 3 ปีที่แล้ว

    Thanks for the tutorial! im still a beginner :)

  • @amalradwan7193
    @amalradwan7193 4 ปีที่แล้ว

    i like the way u think out loud

  • @vikramsinha1246
    @vikramsinha1246 5 ปีที่แล้ว

    Can u plz make videos on numpy

  • @bishoyrezkalla9050
    @bishoyrezkalla9050 4 ปีที่แล้ว

    you are awesome man

  • @jaygatusso
    @jaygatusso 5 ปีที่แล้ว

    Hi from Nairobi. Just beginning the series.
    You have very weird coffee cups Sir hehehe.

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

    may i ask how do we get colous for some of the characters

    • @josephjohn8623
      @josephjohn8623 4 ปีที่แล้ว

      i have ocd n prefer to have it just like him

  • @cooksfriend9774
    @cooksfriend9774 4 ปีที่แล้ว

    Why did you use the for loop? I'm confused. In addition, how would you set up a for loop? You can construct it with anyway?

    • @jeschr3462
      @jeschr3462 3 ปีที่แล้ว

      You don't have to use a for loops at all imo. It just makes everything confusing. At least for me. Of course employers and teachers would prefer that you use it to minimize the lines of code in your program.

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

    Excelente, gracias.

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

    your older videos were much more noob friendly

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

    Are you going to update your Django tutorial any time soon?

    • @sentdex
      @sentdex  5 ปีที่แล้ว

      It's on my todo list. Dno about "soon." Got a suggestion for what we should build?

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

    Haha there's a Tic Tac Toe project in Python on Github. It was written in 1800 lines xD I expect a better Game than that :)

    • @triis8643
      @triis8643 5 ปีที่แล้ว

      Can you send me the link xD

    • @DerTim
      @DerTim 5 ปีที่แล้ว

      @@triis8643 google it and you will find it! I don't have the link to the project anymore :/

    • @sanjaysoni6942
      @sanjaysoni6942 5 ปีที่แล้ว

      😂😂😂

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

      1800 lines... is excessive. I'm sure it'll be more polished than mine, but dang lmfao.

    • @DerTim
      @DerTim 5 ปีที่แล้ว

      @@sentdex well most of the lines were graphical outputs with print()'s but I'm sure I could do that with way less with the same result :)

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

    thanks alot

  • @amirahmed8232
    @amirahmed8232 5 ปีที่แล้ว

    best one ever ❤❤

  • @vaibhavmundhra1997
    @vaibhavmundhra1997 5 ปีที่แล้ว

    is a row function in python ??? or what it is ?? can anyonne help me plz

  • @DrUrlf
    @DrUrlf 3 ปีที่แล้ว

    What IDE is he using in the video?

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

    Hello everybody.....What's going on?...Waiting for this video

  • @danielescotece7144
    @danielescotece7144 5 ปีที่แล้ว

    Numpy zeros is bae

  • @twobits7310
    @twobits7310 5 ปีที่แล้ว

    My Programming is good but i didn't study math, i want to learn A.I and machine learning. What math do i have to learn to be good in A.i and ML?

    • @idiocracy10
      @idiocracy10 5 ปีที่แล้ว

      siraj's youtube has a curriculum for machine learning but basically you need to learn linear algebra and calculus, a great youtube source for those is 3blue1brown

    • @twobits7310
      @twobits7310 5 ปีที่แล้ว

      @@idiocracy10 Is data science necessary for ML? Or its complete different thing?

    • @idiocracy10
      @idiocracy10 5 ปีที่แล้ว

      @@twobits7310 there is a lot of overlap, hackernoon.com/what-on-earth-is-data-science-eb1237d8cb37
      has a pretty good outline of it.

  • @barrjohnm
    @barrjohnm 4 ปีที่แล้ว

    how do I join the discord?

  • @DaBrainFarts
    @DaBrainFarts 4 ปีที่แล้ว

    I am using this tutorial for Python 3.8 something, I'm guessing this applies to most all versions of Python close to 3.7 but does anyone know for sure?

  • @claviosteltman9915
    @claviosteltman9915 5 ปีที่แล้ว

    3:28 nice

  • @Thesrik23
    @Thesrik23 5 ปีที่แล้ว

    What sublime package you use for using integrated terminal.
    If possible please mention the package link.
    Thanks

    • @YeshwanthReddy
      @YeshwanthReddy 5 ปีที่แล้ว

      Sublime has a built-in terminal. Use Ctrl+B on any python file to build it.

    • @sentdex
      @sentdex  5 ปีที่แล้ว

      everything up to this point has been covered about our setup process. "integrated terminal" is included. ctrl+b, choose python, all set.

  • @arunchaudhry5696
    @arunchaudhry5696 5 ปีที่แล้ว

    Why do we have a comma after the last element of the list?

    • @MiledRizk
      @MiledRizk 4 ปีที่แล้ว

      Actually, we don't need it.

  • @nickchamberlin
    @nickchamberlin 5 ปีที่แล้ว

    Longer videos would be appreciated

  • @mohamedkhaled-qc7kb
    @mohamedkhaled-qc7kb 5 ปีที่แล้ว

    what are the difference between these course and the previously course in python 3?

    • @sentdex
      @sentdex  5 ปีที่แล้ว

      Less unnecessary parts, different teaching method, actual changes in Py 3 since then...etc.

    • @mohamedkhaled-qc7kb
      @mohamedkhaled-qc7kb 5 ปีที่แล้ว

      @@sentdex thank you for replying and I am so happy to talk with you and Please i want to figure out how long time to be have concept and basics of machine learning and AI. I am 20 years old and learning linear algebra and statistics

  • @20secondssongs37
    @20secondssongs37 5 ปีที่แล้ว

    would you recommend Pygame over Unity?

    • @sentdex
      @sentdex  5 ปีที่แล้ว

      Never used unity, but, from what I know, if you're serious about game dev, then you'd use Unity.

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

    Feels silly to learn basics after doing stuff like machine learning and AI 😂😂😂

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

      Probably not a series for you, it's for the people who cant get to the ML and AI because they dno the basics. We'll be back to more complex stuff soon enough, just had to update the basics series.

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

      @@sentdex Yes I understand. We've all been through this before.

  • @durmuscan6964
    @durmuscan6964 5 ปีที่แล้ว

    how many parts will this video series consist of

    • @sentdex
      @sentdex  5 ปีที่แล้ว

      I don't know yet.

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

    i realized today, that sublime 3 and C/C++ doesnt go well together : (

    • @kosayoda8262
      @kosayoda8262 5 ปีที่แล้ว

      the Lorde VScode has pretty good multi-language support

  • @aabhishek4911
    @aabhishek4911 5 ปีที่แล้ว

    Dude can you do a some videos with keras as well ? please please please

    • @sentdex
      @sentdex  5 ปีที่แล้ว

      Already done keras videos recently. Search "keras" on pythonprogramming.net

  • @sammyjacob2190
    @sammyjacob2190 5 ปีที่แล้ว

    Why are you using sublime text instead of idle?

    • @amitsangwan007
      @amitsangwan007 5 ปีที่แล้ว

      we got these in every video!!!!!!!!!!!!!

    • @sentdex
      @sentdex  5 ปีที่แล้ว

      I answered that in video #1

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

    "​what is "real" really? how do we know what... "real" is?" THAT'S DEEP!!! Sentdex.... you're deep!

  • @siddharthjoshi5488
    @siddharthjoshi5488 4 ปีที่แล้ว

    In for loop, if I type
    for row in game:
    print(game)
    It prints the data in the game three times.
    Anybody know why?

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

      You should type
      for row in game:
      print(row)
      instead. This is because you are printing the entire game list, instead of each row in the game list.

    • @siddharthjoshi5488
      @siddharthjoshi5488 4 ปีที่แล้ว

      @@Kepplerr Gotcha. Thanks :)

  • @ranjithkumarg7744
    @ranjithkumarg7744 5 ปีที่แล้ว

    You forgot to teach about uses of "in"

    • @sentdex
      @sentdex  5 ปีที่แล้ว

      I didn't forget. This series isn't a reference guide. If you're looking to learn everything and all the things you can do with each thing, check out the official Python docs. This series is meant to just get people set on the right tracks, and, for the most part, I think people understand what "in" means. Maybe I am mistaken :P

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

    import numpy as np np.zeros((3,3))

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

      Except you need numpy and this is a basic video

  • @suparshwapatil3680
    @suparshwapatil3680 4 ปีที่แล้ว

    what is your discord id

  • @carbsncaffeine9254
    @carbsncaffeine9254 5 ปีที่แล้ว

    beast

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

    18 th one to like :-)

    • @techkanakesh6765
      @techkanakesh6765 5 ปีที่แล้ว

      Mortal Phoenix give me some answers to my questionsthat's all

  • @vigneshwaranthangachamy887
    @vigneshwaranthangachamy887 5 ปีที่แล้ว

    ur Great 😊

    • @sentdex
      @sentdex  5 ปีที่แล้ว

      Thanks!

  • @manashejmadi
    @manashejmadi 5 ปีที่แล้ว

    can anybody explain the concept of these premieres im not getting it. anybody?

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

      1. You know when the next video is actually coming.
      2. When it is here, you can watch and interact with me and then others in the live chat
      And, if you don't care about those, the video is normal after and you can just wait for that!

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

    A little to slow for me :)

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

      Better too slow than fast.

  • @jiandeng8595
    @jiandeng8595 5 ปีที่แล้ว

    I found you won't code until you drink (show the cup), :), @4:17

  • @cultofsogga5863
    @cultofsogga5863 5 ปีที่แล้ว

    AWW not IDLE)))

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

    (UNREGISTERED) u hacker XD