A SIMPLE GAME FOR A BEGINNER IN PYTHON WITH ONLY TWO MODULES

import time
import playsound
playsound.PlaysoundException("HERE YOU CAN PLAY YOUR FAV SONG IF YOU HAVE THAT ON SAME
                                DIRECTORY")
op = input("Do You Want To Play This Game: ")
if op in ["Yes", "yes"]:
print("ok let's start Now This Game is a QUESTIONING GAME AND YOU HAVE TO ANSWER...")
elif op in ["No", "no"]:
exit()
else:
print("""I AM CLOSING this game AND you will have to pay $1Google plex""")
exit()
print("""-----------------------------------------------------------------------------------
        ------------------------------""")
print(""" Hello welcome to my game
                                   """)
time.sleep(3)
print(""" In this game you have to solve some puzzles so that you can reach the Golden
        Chest and help the boy named Mohan.     """)
time.sleep(9)
print(""" There is no rule of this game
                                          """)
time.sleep(3)
print(""" Now this is your next question and you are very smart. I hope you get the
        answer. If not, type help             """)
time.sleep(9)
print("""----------------------------------------------------------------------------------
        -------------------------------""")
print(""" This is your first puzzle
                                       """)
time.sleep(3)
print("""Q1. I go up and I go down, I'm burning and I'm hot. If you look at me properly,
        your eyes will wish you were not. what am I? """)
print(""" Please answer in english
                                           """)
print(""" and use help you good guy if you want...
                                               """)
time.sleep(9)
ama = input("Enter your answer here: ")
if ama in ["The Sun", "sun", 'Sun', 'the sun']:
print("Wow! You Are A Great Scientist")
elif ama in ["help", "Help", "HELP"]:
print("The Sun")
elif ama in ["hint", "HINT", "Hint"]:
print("I AM FAVOUR OF KIDS")
else:
A = int(input("Enter your age here: "))
if A >= 18:
print("Bro Let's Party")
elif A >= 100:
print("YOU FUCKING SCAMMER dO NOT PLAY THIS GAME ELSE I WILL CALL TO POLICE...")
else:
print("Yeah! Try Again Later Baby")
time.sleep(9)
print("This is your next Question, solve this")
print("""Q2. I can be white or dark, I am sweet and sometimes bitter and you see me in a
        cupcake or cookie. what am I?""")
time.sleep(9)
loppy = input("Enter your answer here: ")
if loppy in ["Chocolate", "chocolate", "CHOCOLATE"]:
print("Wow! I think you like chocolate")
elif loppy in ["help", "Help", "HELP"]:
print("Chocolate")
else:
print("You Are A fool User")
print("Thank you for playing this game")
print("I will bring more updates next time")
exit()
time.sleep(9)
print("Now this is your next question and you are very smart. I hope you get the answer.
        If not, type help")
print("Q3. How did Mercury, Venus, Earth, Mars, Jupiter, Saturn, Uranus and Neptune create
        the solar system?")
time.sleep(9)
worl = input("Enter your answer here: ")
if worl in ["They planet", "they plan it"]:
print("WoW! You Are A Genius.")
elif worl in ["help", "Help", "HELP"]:
print("They planet")
else:
print("You are a stigma why did you come to this earth")
print("Thank you for playing this game")
print("I will bring more updates next time")
exit()
time.sleep(2)
print("Now Answer This Shit......")
print("Q4. I am always there for you, you follow me like my best friend, imitate everything
        you do, and very often you see me on the ground. what am I?")
time.sleep(9)
def lol():
lo = input("Enter your answer here: ")
if lo in ["Shadow", "shadow", "SHADOW"]:
print("This question is easy for you because you are a fucking genius")
elif lo in ["help", "HELP", "Help"]:
print("Shadow")
else:
print("You are a stigma why did you come to this earth")
print("Thank you for playing this game")
print("I will bring more updates next time")
exit()
lol()
time.sleep(9)
def gunc():
print("This Question is very tricky now")
print("""Q5. Adam and Eve took a bitch from me, because the snake said they should, but
they lost a lot due to this munching. what am I?""")

lock = input("Enter your answer here: ")
if lock in ["Apples", "APPLES", "apples"]:
print("How you can guess all the things this is amazing...")
elif lock in ["help", "Help", "HELP"]:
print("Apples")
else:
print("You are a dum man bro")
gunc()
time.sleep(3)
print("Thank you for playing this game")
time.sleep(2)
print("I will bring more updates next time")

Comments

Popular posts from this blog

MY FIRST MYSQL PROJECT I EVER MADE

CALCULATING FACTORIALS IN PYTHON LANGUAGE