Create a QUIZ GAME with Python 💯

  Рет қаралды 183,521

Bro Code

Bro Code

Жыл бұрын

#python #tutorial #course
Python quiz game
questions = ("How many elements are in the periodic table?: ",
"Which animal lays the largest eggs?: ",
"What is the most abundant gas in Earth's atmosphere?: ",
"How many bones are in the human body?: ",
"Which planet in the solar system is the hottest?: ")
options = (("A. 116", "B. 117", "C. 118", "D. 119"),
("A. Whale", "B. Crocodile", "C. Elephant", "D. Ostrich"),
("A. Nitrogen", "B. Oxygen", "C. Carbon-Dioxide", "D. Hydrogen"),
("A. 206", "B. 207", "C. 208", "D. 209"),
("A. Mercury", "B. Venus", "C. Earth", "D. Mars"))
answers = ("C", "D", "A", "A", "B")
guesses = []
score = 0
question_num = 0
for question in questions:
print("----------------------")
print(question)
for option in options[question_num]:
print(option)
guess = input("Enter (A, B, C, D): ").upper()
guesses.append(guess)
if guess == answers[question_num]:
score += 1
print("CORRECT!")
else:
print("INCORRECT!")
print(f"{answers[question_num]} is the correct answer")
question_num += 1
print("----------------------")
print(" RESULTS ")
print("----------------------")
print("answers: ", end="")
for answer in answers:
print(answer, end=" ")
print()
print("guesses: ", end="")
for guess in guesses:
print(guess, end=" ")
print()
score = int(score / len(questions) * 100)
print(f"Your score is: {score}%")

Пікірлер: 158
@BroCodez
@BroCodez Жыл бұрын
questions = ("How many elements are in the periodic table?: ", "Which animal lays the largest eggs?: ", "What is the most abundant gas in Earth's atmosphere?: ", "How many bones are in the human body?: ", "Which planet in the solar system is the hottest?: ") options = (("A. 116", "B. 117", "C. 118", "D. 119"), ("A. Whale", "B. Crocodile", "C. Elephant", "D. Ostrich"), ("A. Nitrogen", "B. Oxygen", "C. Carbon-Dioxide", "D. Hydrogen"), ("A. 206", "B. 207", "C. 208", "D. 209"), ("A. Mercury", "B. Venus", "C. Earth", "D. Mars")) answers = ("C", "D", "A", "A", "B") guesses = [] score = 0 question_num = 0 for question in questions: print("----------------------") print(question) for option in options[question_num]: print(option) guess = input("Enter (A, B, C, D): ").upper() guesses.append(guess) if guess == answers[question_num]: score += 1 print("CORRECT!") else: print("INCORRECT!") print(f"{answers[question_num]} is the correct answer") question_num += 1 print("----------------------") print(" RESULTS ") print("----------------------") print("answers: ", end="") for answer in answers: print(answer, end=" ") print() print("guesses: ", end="") for guess in guesses: print(guess, end=" ") print() score = int(score / len(questions) * 100) print(f"Your score is: {score}%")
@netuwu2711
@netuwu2711 Жыл бұрын
nice
@adam-vip
@adam-vip Жыл бұрын
👍👍👍
@imyourdadsorry2167
@imyourdadsorry2167 Жыл бұрын
Thank you so much
@benjaminjohnpabroquez8012
@benjaminjohnpabroquez8012 Жыл бұрын
questions = ("How many elements are in the periodic table?: ", "Which animal lays the largest eggs?: ", "What is the most abundant gas in Earth's atmosphere?: ", "How many bones are in the human body?: ", "Which planet in the solar system is the hottest?: ") options = (("A. 116", "B. 117", "C. 118", "D. 119"), ("A. Whale", "B. Crocodile", "C. Elephant", "D. Ostrich"), ("A. Nitrogen", "B. Oxygen", "C. Carbon-Dioxide", "D. Hydrogen"), ("A. 206", "B. 207", "C. 208", "D. 209"), ("A. Mercury", "B. Venus", "C. Earth", "D. Mars")) answers = ("C", "D", "A", "A", "B") guesses = [] score = 0 for i, question in enumerate(questions): print(f"{question}") for option in options[i]: print(option) guess = input("Enter (A, B, C, D): ").upper() guesses.append(guess) if guess == answers[i]: score += 1 print("CORRECT!") else: print(f"INCORRECT! {answers[i]} is the correct answer") print("----------------------") print("RESULTS") print("----------------------") print(f"Answers: {' '.join(answers)}") print(f"Guesses: {' '.join(guesses)}") print(f"Your score is: {int(score / len(questions) * 100)}%")
@ianthoka3530
@ianthoka3530 Жыл бұрын
Can u please get through me i need help serious I need to develop a trading plan using the quiz and also insert a scenario for each question
@idontstudyforamidterm1069
@idontstudyforamidterm1069 8 ай бұрын
this was fun as heck to follow tysm you literally are one of the reasons i discovered that i love coding and cs but they were presented to me badly by uni and some people who code or wtv .. i really appreciate u and i appreciate any instructor or just any coder who keep it chill and doesnt take things too seriously or make it seem complex when it literally isnt
@mukesh_awale
@mukesh_awale Жыл бұрын
You are truly awesome,👌 Please make this quiz game with gui 🙏
@starwyvern010
@starwyvern010 3 күн бұрын
I appreciate how easy you make it to understand these concepts - thanks!!
@greivinvenegas
@greivinvenegas 4 ай бұрын
The video os awesome, and ill continue to enjoy your content, but the channel name is the greatest idea EVER 🎉
@francisjacquart9618
@francisjacquart9618 9 ай бұрын
WOW! IMPRESSIVE! I WILL HAVE TO RESTUDY IN DEPTH THE LOGICS OF YOUR CODE, BUT I AM REALLY IMPRESSED BY THE ELEGANCE OF YOUR PROGRAM!
@ntombi-yensimbinarrates7297
@ntombi-yensimbinarrates7297 11 ай бұрын
This is so dope. Thank you. I want to create a Buzzfeed-like game for a client. This is a great template to start with. Thank you.
@mayukikomatsu4471
@mayukikomatsu4471 Жыл бұрын
Hello! You are so cool to these videos, they are really useful and I can learn so much about coding and fun stuff. I'm fairly new to this channel, so I'm not sure if I can ask you something: Could you do a Battleship game in Java? Or is it hard to do? It's so fun to watch you write these games in different programming languages. Well, anyways thank you for these guide videos, I'll be sure to watch them all(already watched a few). And wish you all the best!! Your videos always makes me want to eat pizza🤤, I don't know why 😁
@tomfardell4111
@tomfardell4111 Жыл бұрын
@amung us aming gus
@alooy333
@alooy333 5 ай бұрын
This video was really good. I learned a lot. thanks
@kszoknyik
@kszoknyik Жыл бұрын
sir, you are godsent! thank you for your videos, you make it so easy to understand.
@Philippines91037
@Philippines91037 Жыл бұрын
Thanks, Now I Can Make A Python Quiz Test. You're And Awesome Coder.😎👍
@zabehullahalizadeh2310
@zabehullahalizadeh2310 Жыл бұрын
Thank you so much Bro Code. Can you make some python projects for beginners . Please
@PedroRodriguez-fv6sc
@PedroRodriguez-fv6sc Жыл бұрын
Hey man, great work. You got a like and a subscriber right away.
@nicksonyosepsitumorang4557
@nicksonyosepsitumorang4557 3 ай бұрын
So helpful thanks bro
@mnonom_yt381
@mnonom_yt381 Жыл бұрын
Hello, can you please introduct us to a advanced c tutorial? Like teach us header files, how to make them, how they work. It would be cool for us.
@jessicaferreira_fjes
@jessicaferreira_fjes Жыл бұрын
This help me a lot!!! Thank you!!
@wotcrofrumz2393
@wotcrofrumz2393 Жыл бұрын
Nice, I'm early to watch Giga Chad coding ☕🗿
@DiamondMan1
@DiamondMan1 Жыл бұрын
this is gonna be so useful im glad i found this channel bc of this channel my brother also got into coding
@anmolkhatiwada2348
@anmolkhatiwada2348 Жыл бұрын
well, that's what he does. He makes the bro Code
@daveg7388
@daveg7388 Жыл бұрын
@@anmolkhatiwada2348 I see what you did there😂
@kandukurisrinivasarao295
@kandukurisrinivasarao295 Жыл бұрын
Every tutorial is usefull. You have made so many videos in Python .But make a GUI image viewer in Python.
@mrpadz2760
@mrpadz2760 Жыл бұрын
Thanks for teaching
@iohanstefanjourney4613
@iohanstefanjourney4613 Жыл бұрын
I would love to see a tutorial on web scraping
@haidaral-ajmi9878
@haidaral-ajmi9878 Жыл бұрын
Thank you for your help ☺️
@prabuddhapal
@prabuddhapal Жыл бұрын
Brother this thing I wanted to create in Java but I can't because I have to learn applets but by watching ur python tutorial it's easy to build in python Thank you so much for your help .
@X-manGamez
@X-manGamez Жыл бұрын
nice tutorial. good work!
@appigoud3620
@appigoud3620 Жыл бұрын
bro please do videos on beginners projects in python👍🙏
@adamartinmusic
@adamartinmusic 4 ай бұрын
THANK YOU sooo much. I have a better understanding. It made my professor uncomfortable that I am using you as a resource. But he doesnt have a clue on python
@duongla9014
@duongla9014 2 ай бұрын
This video is good it helped me a lot
@DrRajibShahriar
@DrRajibShahriar 6 ай бұрын
🥰this guy is awesome for new coders
@fartlivion9279
@fartlivion9279 5 ай бұрын
Nice! I'm wondering how you would do this with both the questions and answers in 1 .txt file that you have in the folder?
@sfSanuga
@sfSanuga Жыл бұрын
Glad to see you brother
@Mixmers
@Mixmers Жыл бұрын
thanks for your service
@user-dk2uq1ok1t
@user-dk2uq1ok1t 7 ай бұрын
i love this
@miniadriel
@miniadriel Жыл бұрын
can you please make this in in tkinter ? it will be soo cool thanks :)
@Karen00586
@Karen00586 8 ай бұрын
Thank you for teaching coding
@hoons6949
@hoons6949 5 ай бұрын
I cannot understand this video,, but I will carry on
@intotheuniverse9170
@intotheuniverse9170 2 ай бұрын
Then why are you watching this video!!!
@realhuman4396
@realhuman4396 Ай бұрын
maybe because hes trying to learn? ​@@intotheuniverse9170
@Money_Maestro23
@Money_Maestro23 14 күн бұрын
He has a playlist called "Python Tutorial for Beginners". This video is a part of it. Go from the beginning, not from here.
@Storm2_0
@Storm2_0 3 ай бұрын
Can you make gui version of this?
@ellana_de
@ellana_de Жыл бұрын
Hi. I plan to loop this quiz so that if they want to play again they can play. But is there a way to randomize the question on the next game?
@tiwariji9985
@tiwariji9985 8 ай бұрын
Awsome Video brother new subscriber added ❤❤ Plus 101 comment 😅
@oporka4656
@oporka4656 10 ай бұрын
best Channal ever
@user-mg4kw8zp4p
@user-mg4kw8zp4p 9 ай бұрын
Thanks bro
@yoyogoodstuff
@yoyogoodstuff 10 ай бұрын
thanks!
@teksneeze9566
@teksneeze9566 Жыл бұрын
thanx brooooo
@Shohjahon149
@Shohjahon149 Жыл бұрын
Will you make videos about node js?
@ShyannKeyshelle
@ShyannKeyshelle Жыл бұрын
Hey Bro, first thanks for this video, all your videos they are really helpful. Now the issues is all of my options show up under my last question. I don't understand why. Help?
@-0-__-0-
@-0-__-0- Жыл бұрын
You can also use a dict to contain each question, its choices, answer and its index all at once in each index so its like, questions = { question_01 : {question, choices, answer}, question_02 : ..... } It would make anything else easier later.
@begadkirat1680
@begadkirat1680 10 ай бұрын
Thats how i did it
@bobhogen8831
@bobhogen8831 8 ай бұрын
Hi @-0__-0-, I know this comment was from awhile ago but I was wondering if you could explain why this would make it easier later? I am brand new to trying coding out and I haven't really tried out what Bro Code made in the video. I am just curious for the most part. Thank you for your time! Have a great rest of your day.
@begadkirat1680
@begadkirat1680 8 ай бұрын
@@bobhogen8831 bcz having each question relate to only a specific Set of answers is easier to deal with and easily sustainable and has lower chances of errors since you dont have to create variables just for the sole reason of indexing
@-0-__-0-
@-0-__-0- 8 ай бұрын
@bobhogen8831 Comprehensive data grouping: It efficiently groups various data elements, such as questions, answers, types, and options, within the same dictionary. By grouping all relevant data of a question, you now have an easy and direct access to specific data related questions by accessing only the dictionary item itself. Efficient Data Integration: This approach adeptly consolidates diverse data components like questions, answers, types, and options within a single dictionary.
@bobhogen8831
@bobhogen8831 8 ай бұрын
@@-0-__-0- Thank you so much!
@ryanrajesh6861
@ryanrajesh6861 11 ай бұрын
How did you make the words at the bottom bright green?
@BEPULVEDIODARSLAR
@BEPULVEDIODARSLAR 11 ай бұрын
HI! BRO CODE I'M LEARNING YOUR VEDIOS AND I'M LEARNING PROGRAMMS. BUT CAN YOU CREATE GAMES FOR EXAMPLE SIMPLE FOOTBALL GAMES AND SIMPLE RACES!! TELL MME
@hil6517
@hil6517 Жыл бұрын
bro when you wrote the questions your keyboard cried for help how did you do that so fast
@user-eq6qj4zc7n
@user-eq6qj4zc7n 3 ай бұрын
I love your quiz game video for Java. Do you have one for Python that uses Tkinter?
@vxintruder
@vxintruder 2 ай бұрын
Yes, I do
@uknownytbr158
@uknownytbr158 Жыл бұрын
Thank you
@gabrielabello3339
@gabrielabello3339 4 ай бұрын
im curious how do you make this a game? like the app itself
@lautaroalvarez399
@lautaroalvarez399 Жыл бұрын
thanks
@muneerabass95
@muneerabass95 Жыл бұрын
bro can i make this type of quiz game using if else condiition ??
@mohammedisarezwani
@mohammedisarezwani 8 ай бұрын
looks a little hard for me !
@rickkk09
@rickkk09 Жыл бұрын
sheeeesh 🥵
@pandit_deepanshu52
@pandit_deepanshu52 7 ай бұрын
Which app or site have u used for this??
@Roblonile
@Roblonile 2 ай бұрын
Pls make with gui
@allanadarayan9617
@allanadarayan9617 7 ай бұрын
This guy is a real chad
@GoldPraiseUnigwe
@GoldPraiseUnigwe 2 ай бұрын
Which compiler can I use on my laptop
@user-anonymous012
@user-anonymous012 2 ай бұрын
🤯
@fly2012able
@fly2012able Жыл бұрын
Very cool! What I am not understand is how you are remember all those codes and when to put () or [] etc… I found myself copy from video to video but cannot really remember all those codes Any tips? Website I can use?
@matheusgafanhoto8232
@matheusgafanhoto8232 Жыл бұрын
What i recommend you instead of copying from a video, is to try to create a personal project. An easy example would be a console app to show your friends, like a election system or an elevator system, they are complicated but you can make it easy just to try :D
@fly2012able
@fly2012able Жыл бұрын
@@matheusgafanhoto8232 Thanks for your reply. Here is my problem, I have few projects I want to do but as soon as I open the app to start writing the code I am stuck and don’t know how to start. 🙁🙁
@lavieloves1997
@lavieloves1997 Жыл бұрын
Thank you soooo much for this i was so stressing about it cause it was my project and have to submit tomorrow but you saved me 💜💜💜
@IvyAkoko
@IvyAkoko 11 ай бұрын
ME TOOO
@shetty5121
@shetty5121 4 ай бұрын
In which software whe shuld do this in idle python itself right?
@dhanushkm2104
@dhanushkm2104 10 ай бұрын
How do you set the answers for the questions
@Priceygames
@Priceygames 5 ай бұрын
I think this is the first step to make a workable Flashcard, use set i guess 🤔
@TheGamingDandy
@TheGamingDandy 7 ай бұрын
Quick question, I followed your code but when it gets to the part at the end where it's printing the answers, it repeats it 5 times instead of having the clean "answers" and then "guesses" format like yours. The guesses column does not repeat though, it only gives the 5 singular letters. How would I solve that?
@jemil8479
@jemil8479 4 ай бұрын
Broski did you find any solution to that ?
@jademcshane07jade6
@jademcshane07jade6 Жыл бұрын
Sir, I've watched all youre python course, what should I learn next?
@BroCodez
@BroCodez Жыл бұрын
Data Structures & Algorithms might be good.
@jademcshane07jade6
@jademcshane07jade6 Жыл бұрын
@@BroCodez Ok ty
@ramakrishna4092
@ramakrishna4092 Жыл бұрын
@@BroCodez hi sir I have completed c course in your channel . If it's possible for you can you pls do a video on how to return a function pointers in c . Thank you for understanding
@owaisfakih
@owaisfakih Жыл бұрын
Which version of Python is this and how to download it?
@rotes3106
@rotes3106 Жыл бұрын
Bro must be working or worked in educational institutions for while you killed that python so quick
@fern112091
@fern112091 Жыл бұрын
how do you add a player count?
@craighayward2
@craighayward2 Жыл бұрын
I keep getting error on guesses.append(guess) is says append has no member
@tjmns
@tjmns 6 ай бұрын
cool. request to expand this tuorial with an option to upload the test score to a MS-SQL-Server database table named Test_Score., for username Michael Thanks.
@xancy8640
@xancy8640 Жыл бұрын
Nice Bro!
@jokeguy5946
@jokeguy5946 Жыл бұрын
Hey bro how can you make the computer choose random questions?
@BroCodez
@BroCodez Жыл бұрын
random.choice(questions) Although you would need to remove every used question and also keep track of the options and correct answers.
@jokeguy5946
@jokeguy5946 Жыл бұрын
@@BroCodez thank bro
@mindless6732
@mindless6732 Жыл бұрын
i did everything exactly the same and the result is shit. idk why it wont work i've rewatched this video about 14 times and made sure everything down to spacing is the exact same but when i start it it forms nothing but incomprehensible garbage. is there some sort of special setting he did or wut?
@emanuelfolorunsho9881
@emanuelfolorunsho9881 8 ай бұрын
What if you want to use a text file?
@lisam119
@lisam119 Жыл бұрын
i dont understand. 😭 is it a good idea to hire a private tutor on fiver?
@letmesolojomama4211
@letmesolojomama4211 Жыл бұрын
You can still answer the questions with lower case letters(ABCD) and you'll get "CORRECT" every time. So how are you suppose to force the user to use upper case only?
@noobdabs1005
@noobdabs1005 Жыл бұрын
why not lol 😅 Just do if guess.istitle(): (put the code here) else: print something to tell the players
@vatsvlogs6110
@vatsvlogs6110 6 ай бұрын
I was fool .. learning c,c++ and Java.. but not python 🤔
@matijacvijovic5712
@matijacvijovic5712 Жыл бұрын
This video saved my life bro
@dillonpaul1498
@dillonpaul1498 11 ай бұрын
you could of shown us how it worked in a display screen.
@nikothenoob
@nikothenoob 10 ай бұрын
be greatful 0:54
@cooortst
@cooortst Жыл бұрын
if guess == answers[question_num]: IndexError: tuple index out of range brother i have problem here . Please help me idk why it's dont work :( i do every like in the video. Have a nice day!
@IntoTheArmsOfMorpheus
@IntoTheArmsOfMorpheus 9 ай бұрын
i just wanted to know how if the user types a different key from [A,B,C,D] . how to make the program ask the question again. Thanks for the effort.
@jemil8479
@jemil8479 4 ай бұрын
Bro i want to know that aswell did you find how to do it ?
@wolberfy
@wolberfy Жыл бұрын
This is strange, Yesterday i made a python program named Venus (idk why i liked the name) and it was a true or false program.
@GD_good_
@GD_good_ 9 ай бұрын
it's so obvious
@KrashankantSharma6459
@KrashankantSharma6459 Ай бұрын
can you plz make a programme when the questions are already written in the word or text format. and the format like -----------------"Question: Who is recognized as the Father of Agricultural Chemistry (World)? A) J.V. Liebig B) J.W. Leather C) V.V. Dokuchaev D) J.B. Boussingault Answer: A) Justus von Liebig"
@gamer310taka9
@gamer310taka9 Жыл бұрын
when im on the last question and i answer it it just automaticly close\
@Gkotsetos13
@Gkotsetos13 7 ай бұрын
Hey Bro's! New to programming know the basics. I copied this code , create my own questions and I want to upload it to a website to send it for fun to some friends. You know what can i do? THnx!
@jemil8479
@jemil8479 4 ай бұрын
Bro Did you find how to do it ?
@matrixow6511
@matrixow6511 Жыл бұрын
the hottest planet is obviosly Uranus
@user-dj7ic1xs2p
@user-dj7ic1xs2p 10 ай бұрын
1:35
@user-mf8vv1qz8n
@user-mf8vv1qz8n 8 ай бұрын
here's anothere with one more: print("Hi, this is a quiz! on math only 6 question") total_questions = 6 correct_answers = 0 answer1 = input("What is 1 + 1?: ") if answer1 == "2": print("Correct!") correct_answers += 1 print("---------") else: print("Incorrect") print("----------") answer2 = input("What is 11 x 2 = ?: ") if answer2 == "22": print("Correct!") correct_answers += 1 print("-------") else: print("Incorrect") print("-----------") answer3 = input("What is 100/20 x 10 = ?: ") if answer3 == "50": print("Correct!") correct_answers += 1 print("-------") else: print("Incorrect") print("-----------") answer4 = input("What is 40/20 x 300 = ?: ") if answer4 == "600": print("Correct!") correct_answers += 1 print("-------") else: print("Incorrect") print("-----------") answer5 = input("What is a (a x 50 = 150)?: ") if answer5 == "3": print("Correct!") correct_answers += 1 print("-------") else: print("Incorrect") print("-----------") answer6 = input("What is X (X x 300 = 9000)?: ").upper() if answer5 == "30": print("Correct!") correct_answers += 1 print("-------") else: print("Incorrect") print("-----------") score = (correct_answers / total_questions) * 100 print(f"Your score: {score}%") don't copy(pleas don't rost me
@upsettingace7776
@upsettingace7776 Жыл бұрын
Is no one gonna mention how fast this dude is typing? Or this is normal in America
@noobdabs1005
@noobdabs1005 Жыл бұрын
Most of it is sped up
@ForRealGD
@ForRealGD 11 ай бұрын
What are you using to type the code?
@nikothenoob
@nikothenoob 10 ай бұрын
pycharm
@ziadprog1025
@ziadprog1025 7 ай бұрын
Is this pycharm or python?
@thebrokencode14513
@thebrokencode14513 Ай бұрын
Pycharm is the code editor while Python is the language the program is coded in.
@sapnaambedkar6068
@sapnaambedkar6068 4 ай бұрын
GIGACODE
@luffyistheg3092
@luffyistheg3092 14 күн бұрын
Can someone tell me why it says that there is an indentation error in the line guess = input("Enter (A, B, C, D): ").upper()
@kenny_eats_many
@kenny_eats_many Жыл бұрын
Uhh oh umm, what do I say, can I get suggestions please
@chiragmahajan1725
@chiragmahajan1725 6 ай бұрын
my options are not changing they are still same for every question can anyone help?
@jnxs3942
@jnxs3942 4 ай бұрын
Did you find how to fix it ?
@jemil8479
@jemil8479 4 ай бұрын
​@@jnxs3942 Did you find the solution ? 😅
@chiragmahajan1725
@chiragmahajan1725 4 ай бұрын
@@jnxs3942 yes i just corrected some mistakes like i did options to option answers to answer just minor changes just copy this code in the video
@rudrarajkar1116
@rudrarajkar1116 Жыл бұрын
I will literally drink milk if I get a heart/reply
@BroCodez
@BroCodez Жыл бұрын
enjoy your milk
@rudrarajkar1116
@rudrarajkar1116 Жыл бұрын
@@BroCodez enjoyed
@user-mn7br9by3f
@user-mn7br9by3f 11 ай бұрын
this is a time waste it dose not work
@nikothenoob
@nikothenoob 10 ай бұрын
how
Python dictionaries are easy 📙
8:06
Bro Code
Рет қаралды 196 М.
2 YEARS of PYTHON Game Development in 5 Minutes!
4:54
Coding With Russ
Рет қаралды 838 М.
Cute Barbie Gadget 🥰 #gadgets
01:00
FLIP FLOP Hacks
Рет қаралды 61 МЛН
Homemade Professional Spy Trick To Unlock A Phone 🔍
00:55
Crafty Champions
Рет қаралды 45 МЛН
How to bring sweets anywhere 😋🍰🍫
00:32
TooTool
Рет қаралды 51 МЛН
DELETE TOXICITY = 5 LEGENDARY STARR DROPS!
02:20
Brawl Stars
Рет қаралды 17 МЛН
Python *ARGS & **KWARGS are awesome! 📦
14:54
Bro Code
Рет қаралды 69 М.
5 Good Python Habits
17:35
Indently
Рет қаралды 375 М.
20 Programming Projects That Will Make You A God At Coding
14:27
The Coding Sloth
Рет қаралды 465 М.
Making a Game in Python with No Experience
5:57
Goodgis
Рет қаралды 1,6 МЛН
Python 101: Learn the 5 Must-Know Concepts
20:00
Tech With Tim
Рет қаралды 1 МЛН
3 PYTHON AUTOMATION PROJECTS FOR BEGINNERS
17:00
Internet Made Coder
Рет қаралды 1,5 МЛН
Python lists, sets, and tuples explained 🍍
15:06
Bro Code
Рет қаралды 231 М.
Python concession stand program 🍿
8:10
Bro Code
Рет қаралды 40 М.
ROCK PAPER SCISSORS game in Python 🗿
9:29
Bro Code
Рет қаралды 113 М.
5 Mini Python Projects - For Beginners
1:41:08
Tech With Tim
Рет қаралды 2,8 МЛН
Cute Barbie Gadget 🥰 #gadgets
01:00
FLIP FLOP Hacks
Рет қаралды 61 МЛН