It's not An Actually Python Like Website the code is python but it's not Like A video game or actually computer its just a bunch of text

Viewed 29

TECHSMART

 User_name=input("Please Enter Your UserName ")
    if User_name=="caden":
        passwordC=input("Welcome Caden, Put In Your Password ")
        if passwordC=="35805":
            print("Logging You In")
        else:
            print("Wrong Password")
            raise SystemExit("Wrong Password")
    if User_name=="addie":
        passwordA=input("Welcome Addie Put In Your Password ")
        if passwordA=="123":
            print("Logging You In")
        else:
            print("Wrong Password")
            raise SystemExit("Wrong Password")

Choseing what they want to do

  calculator=input("Do You Want To Open Calculator Yes OR No? ")
    if calculator=="No":
        quiz=input("Do You Want To Take A Quiz Yes Or No? ")
    if quiz=="No":
        notebook=input("Do You Want To Take Some Notes Yes Or No? ")
        if notebook=="No":
            book=input("Do You Want To Read Some Books Yes Or No? ")
    if book=="No":
        bank=input("Do You Want To Check Your Bank Yes Or No? ")
        if bank=="No":
            pizza=input("Do You Want To Order A Pizza Yes Or No? ")
            if pizza == "No":
                print("Huh Well Thats All We Have For Now")
**Calculator choice**

if calculator == "Yes": num1 = float(input("What number do you want to multiply divide add and subtract? ")) num2 = float(input("By What other number? ")) print() print(" ") print("| |"), print("| Cauculator app |") print("||") total = float(num1 + num2) print("The Result of adding these values is: " + str(total)) dif = float(num1-num2) print ("The result of subtracting these values is: " + str(dif)) prod = float(num1 * num2) print("The result of multiplying these values is: "+ str(prod)) quot = float(num1 / num2) print( "The result of dividing these values is: "+ str(quot))

Bank Choice

 if bank == "Yes":
                pin=input("What is your pin? ")
                if pin == "35805":
                    print("Welcome,Caden")
                    dollars = 20
                print("You have " + str(dollars) + " dollars.")
                spend = float(input("How much would you like to spend? "))
                if spend > dollars:
                    spend = dollars 
                dollars -= spend
                print("You spent " + str(spend) + " dollars.  You 
have " + str(dollars) + " left.")
**order a pizza choice**
    if pizza=="Yes":
        print("Calling dominos")
        pizza=input("Hello Sir Do You Want Cheese Or Peperoni? ")
        if pizza=="Cheese":
            print("Ok its on the way")
        if pizza=="Peperoni":
            Peperoni = input("How many Peperonis? ")
            print("Okay Its On The Way")

Notebook Choice

 if notebook=="Yes":
        print("Type whatever you'd like right here!")
        print("------------------------------------")
        input("")
        input("")
        input("")
        input("")
        input("")
        input("")
        input("")
        input("")
        input("")
        input("")
        input("")

Book Choice

if book =="Yes":
    story = input("What book do you want to read? three little pigs or BEST STORY EVER ")

pigs Book Choice

if story == "pigs":
    print("Once upon a time, there were three little pigs and a wolf that was really hungry The wolf watched the pigs all the time, and one day they left their mom to go start their own lives Well the wolf watched the pig build their houses one pig made his house of straw the other made his house of sticks And the last made his house of bricks So one day the pig went to the house made of straw and he said ill huff and ill puff and I will blow this house down and he did then he went to the house made of sticks and said the same and he did finally he went to the house of bricks and said the same but he could not so they tricked the wolf and he died ")

other Book choice

if story == "BEST STORY EVER":
    print("ONCE UPON A TIME A KID DIED THE ENDEEZNUTS")

quiz game Code

if quiz=="Yes":
    print("QUIZ MASTER")
    print("-----------")
    print("           ")
    pts=0
    print("---- QUESTION 1 ----")
    print("                    ")
    print("   What Is 10+10?   ")
    print("A. 20")
print("B. 30")
print("C. 40")
print("D. 50")
a1=input("Please Enter YOUR Answer A B C OR D ")
if a1 == "A":
    print("CORRECT") 
    pts += 1
else:
    print("Wrong")
print("")
print("---- QUESTION 2 ----")
print("                    ")
print("   What Is 9+10?   ")
print("A. 21")
print("B. 58")
print("C. 19")
print("D. 12")
a2=input("Please Enter YOUR Answer A B C OR D ")
if a2 == "C":
    print("CORRECT") 
    pts += 1
else:
    print("Wrong")
print("")
print("---- QUESTION 3 ----")
print("                    ")
print("   What Is 12+12?   ")
print("A. 24")
print("B. 16")
print("C. 89")
print("D. 32")
a3=input("Please Enter YOUR Answer A B C OR D ")
if a3 == "A":
    print("CORRECT") 
    pts += 1
else:
    print("Wrong")
print("")      
print("Your Score Is " + str(pts) + "! ")
0 Answers
Related