Simple Multiple Choice Quiz Game in Python

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

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

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

    I needed this video a lot, Because I was running my whole program in errors

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

    great work

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

    Amazing step wise guide. Excellent work.

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

    Thanks, this video helped me alot with my digital tech assessment.

  • @Free-qd5tr
    @Free-qd5tr 2 ปีที่แล้ว

    Thank you very much, I try this source code and woooo it can run

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

    is it possible to export this a website

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

    Thank you very much that was very interesting!

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

    Thank you soo much.. its really helpfull

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

    Thank you mam❤

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

    Excellent work!

  • @AC-wi7gp
    @AC-wi7gp 2 ปีที่แล้ว

    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.

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

      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

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

    What if we want to have like age boundaries?? Could you please help me with thz

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

      What do you mean by age boundries? Can you explain a bit more?

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

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

  • @AkshayKumar-ig2uo
    @AkshayKumar-ig2uo 2 ปีที่แล้ว

    Mam ye kis par work kiya hai apne notepad par

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

      I used the Pyhton IDLE. You can watch my video to learn how to download it. th-cam.com/video/QIkjCnIpDSw/w-d-xo.html

  • @n.k.ssisters233
    @n.k.ssisters233 3 ปีที่แล้ว

    Thank you ☺️

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

    Thanks a lot

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

    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

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

      You can use this line of code instead of the one shown in the video:
      print("Well done! Your score was", score, "/ 3")

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

      Thanks

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

    Print pr invalid syntax aa rha h

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

      Did you copy the code correctly? Try copy pasting from the Github link posted in the description of the video.

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

      ??

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

    How do I add more chances?

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

      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.