#4h: Codding in Python {FUTURE GAME}
#FUTURE_GAME
import random
print("This games predicts your stupid future and it can come very bad or good")
z=str(input("Enter your name: "))
job=['Banker','Millioniare','Begger','Lawyer','Industrialist','Sportsperson','Teacher','x']
sal=['1000000','69','1','696969696969','10000','100','6900000000000000','x']
clothes=['Shirt pant','(Formal) Shirt-pant','Underwear','Salwar-suit','One-piece','Towel','Nothing','x']
vehicle=['Car','Truck','Cycle','Bullock-cart','Rickshaw','Tempo','Bus','Donkey','Legs','x','Super-fast car']
gender=['Mrs','Mr','Gay','x']
home=['Caravan','Forest','Rent','Flat','Footpath','Bunglow','x']
place=['ChapraJila','Paris','Dubai','Islamabad','NewDelhi','Berlin','NewYork','x']
y=random.choice(job)
if y=='x':
y=str(input("Congratulations you have got chance to choose your job. Enter job name: "))
w=random.choice(sal)
if w=='x':
w=str(input("Congratulations you have got chance to choose your salary: "))
v=random.choice(clothes)
if v=='x':
v=str(input("Congratulations you have got chance to choose your clothes. Enter your cloth: "))
u=random.choice(vehicle)
if u=='x':
u=str(input("Congratulations you have got chance to choose your vehical. Enter your vehicle: "))
t=random.choice(gender)
if t=='x':
t=str(input("Congratulations you have got chance to to choose your gender. Enter your gender (Mr,Mrs,Gay or any other): "))
s=random.choice(home)
if s=='x':
s=str(input("Congratulations you have got chance to to choose your home. Enter your home: "))
r=random.choice(place)
if r=='x':
r=str(input("Congratulations you have got chance to choose your home-town. Enter your home-town: "))
print("Hi ! ",t,". ", z ," wearing ",v," you will be ", y ,"earning $", w, " per month.")
print("And you you will move on ",u ," staying in ",s," in ",r)
q=int(input("If you think this true enter any number: "))
tf=['True','False']
p=random.choice(tf)
print("I,m sorry it is all ",p, " and will affect your future. ")
print("GAME OVER")
Download CODES here.
CLICK HERE for online python.
import random
print("This games predicts your stupid future and it can come very bad or good")
z=str(input("Enter your name: "))
job=['Banker','Millioniare','Begger','Lawyer','Industrialist','Sportsperson','Teacher','x']
sal=['1000000','69','1','696969696969','10000','100','6900000000000000','x']
clothes=['Shirt pant','(Formal) Shirt-pant','Underwear','Salwar-suit','One-piece','Towel','Nothing','x']
vehicle=['Car','Truck','Cycle','Bullock-cart','Rickshaw','Tempo','Bus','Donkey','Legs','x','Super-fast car']
gender=['Mrs','Mr','Gay','x']
home=['Caravan','Forest','Rent','Flat','Footpath','Bunglow','x']
place=['ChapraJila','Paris','Dubai','Islamabad','NewDelhi','Berlin','NewYork','x']
y=random.choice(job)
if y=='x':
y=str(input("Congratulations you have got chance to choose your job. Enter job name: "))
w=random.choice(sal)
if w=='x':
w=str(input("Congratulations you have got chance to choose your salary: "))
v=random.choice(clothes)
if v=='x':
v=str(input("Congratulations you have got chance to choose your clothes. Enter your cloth: "))
u=random.choice(vehicle)
if u=='x':
u=str(input("Congratulations you have got chance to choose your vehical. Enter your vehicle: "))
t=random.choice(gender)
if t=='x':
t=str(input("Congratulations you have got chance to to choose your gender. Enter your gender (Mr,Mrs,Gay or any other): "))
s=random.choice(home)
if s=='x':
s=str(input("Congratulations you have got chance to to choose your home. Enter your home: "))
r=random.choice(place)
if r=='x':
r=str(input("Congratulations you have got chance to choose your home-town. Enter your home-town: "))
print("Hi ! ",t,". ", z ," wearing ",v," you will be ", y ,"earning $", w, " per month.")
print("And you you will move on ",u ," staying in ",s," in ",r)
q=int(input("If you think this true enter any number: "))
tf=['True','False']
p=random.choice(tf)
print("I,m sorry it is all ",p, " and will affect your future. ")
print("GAME OVER")
Download CODES here.
CLICK HERE for online python.
Comments