heres the janky code will update this when i fix it fully
print(” welcome to washing machine sim 06 \n please enter one of these choices \n 1: pick up clothes \n 2: RUN AWAY”)
Z = input(” > “)
if Z == (“1”) or (“pick up clothes”):
print(“you picked up your basket of clothes \n now you have two choices \n 1: bring to the washer \n 2: BURN THEM”)
X = input(” > “)
if X == (“1”) or (“bring to the washer”):
print(“you have brought them to the washer you now what more choices \n 1: put them in the washer \n 2: SUPLEX THEM”)
else:
print (“im sorry dave im afraid i cant do that”)
if X == (“2”) or (“burn them)”):
print(“your house burns down and you die THE END”)
else:
print (“im sorry dave im afraid i cant do that”)
T = input(” > “)
if T == (“1”) or (“put them in the washer”):
print(“you put them in the washer you now have one choice \n 1: START WASHER”)
R = input(” > “)
if R == (“1”):
print(“YOU WIN”)

