I needed this video a lot, Because I was running my whole program in errors
@francismannion70756 ай бұрын
Thank you very much that was very interesting!
@zaidchasmawala2832 жыл бұрын
great work
@sonikamandal45713 жыл бұрын
Amazing step wise guide. Excellent work.
@annliyasangeeth45162 жыл бұрын
What if we want to have like age boundaries?? Could you please help me with thz
@genxcoding552 жыл бұрын
What do you mean by age boundries? Can you explain a bit more?
@Lestutero2 жыл бұрын
#Ask Name player_name = input("Hi! What is your name?") #Age Restriction age = 18 player_age = int(input("How old are you?")) if player_age 18: print("Welcome " + player_name + " to the Simple Quiz Game!")
@asharhabib47422 жыл бұрын
Thanks, this video helped me alot with my digital tech assessment.
@imyourjoy77212 жыл бұрын
Thank you soo much.. its really helpfull
@philanygqwaru67192 жыл бұрын
is it possible to export this a website
@Free-qd5tr2 жыл бұрын
Thank you very much, I try this source code and woooo it can run
@AC-wi7gp2 жыл бұрын
Hi, thanks for the video, how would u make the quiz to show more than one question in random order? I am preparing a random multiple-choice quiz with 15 questions.
@karygordo2 жыл бұрын
Probably create a dictionary and import the random library. There is a saying in coding. DRY - DON'T REPEAT YOURSELF. There are far better ways to make a quiz
@ajimullahansari730710 ай бұрын
Thank you mam❤
@n.k.ssisters2333 жыл бұрын
Thank you ☺️
@AkshayKumar-ig2uo2 жыл бұрын
Mam ye kis par work kiya hai apne notepad par
@genxcoding552 жыл бұрын
I used the Pyhton IDLE. You can watch my video to learn how to download it. kzbin.info/www/bejne/h3rOm3akftV3idk
@kalanitandon16823 жыл бұрын
Excellent work!
@genxcoding553 жыл бұрын
Thank you.
@Frp_xbox3 жыл бұрын
This help me alot but how can I write the code That will give the score like ("you got 3/5") instead of write 3 alone. Thank you
@genxcoding553 жыл бұрын
You can use this line of code instead of the one shown in the video: print("Well done! Your score was", score, "/ 3")
@Frp_xbox3 жыл бұрын
Thanks
@shabina45293 жыл бұрын
Thanks a lot
@its_me_asur2 жыл бұрын
Print pr invalid syntax aa rha h
@genxcoding552 жыл бұрын
Did you copy the code correctly? Try copy pasting from the Github link posted in the description of the video.
@genxcoding552 жыл бұрын
??
@Lestutero2 жыл бұрын
How do I add more chances?
@genxcoding552 жыл бұрын
When you declare chance, set it equal to the number of chances you want (i.e. chance= 3). However, you might have tweak the logic a bit.