Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
321 views
in Technique[技术] by (71.8m points)

python - I need help here, how do I make the game continue with the and repeat?

Here is the script, as I said I want the game to continue if you have right and give another question but reapet the svar thing.

import random

LIST = [1, 2, 3, 4, 5, 6, 7 ,8, 9]
streak = 0
    
number1 = random.choice(LIST)
number2 = random.choice(LIST)
right = number1 * number2 
    
svar = float(input(str(number1) + " * " + str(number2)))
    
if svar == right:
    print("Right")
    streak = streak + 1
    print("Streak: " + str(streak))
else:
    print("Wrong")
question from:https://stackoverflow.com/questions/65945563/i-need-help-here-how-do-i-make-the-game-continue-with-the-and-repeat

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

I would change the Code to (depending what Python Version you use!):

# Python 3.x:
import random

LIST = [1, 2, 3, 4, 5, 6, 7 ,8, 9]
streak = 0
    
number1 = random.choice(LIST)
number2 = random.choice(LIST)
right = int(number1 * number2) 
print("Enter 0 to exit!")
svar = int(input(f"{number1} * {number2} is?    "))

while svar != 0:
    if svar == right:
        streak += 1
        print(f"Right!
Streak: {streak}")
    else:
        print(f"Wrong!
Streak ended @ {streak}")
        streak = 0
    number1 = random.choice(LIST)
    number2 = random.choice(LIST)
    right = int(number1 * number2)
    svar = int(input(f"{number1} * {number2} is?    "))
# Python 3.9:
import random

LIST = [1, 2, 3, 4, 5, 6, 7 ,8, 9]
streak = 0
    
number1 = random.choice(LIST)
number2 = random.choice(LIST)
right = int(number1 * number2) 
print("Enter 0 to exit!")

while (svar := int(input(f"{number1} * {number2} is?    "))) != 0:
    if svar == right:
        streak += 1
        print(f"Right!
Streak: {streak}")
    else:
        print(f"Wrong!
Streak ended @ {streak}")
        streak = 0
    number1 = random.choice(LIST)
    number2 = random.choice(LIST)
    right = int(number1 * number2)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...