基本上我爲隨機測試答案getter做了一些代碼。我的想法是,它會給你一個隨機答案,從一個選項。當我運行這個代碼時,它似乎會被拒之門外。爲什麼我的隨機答案getter的代碼不工作?
下面是代碼:
import random
Question_total = int(input("How Many answers do you need?"))
x = random.choice('abcd')
print(x * Question_total)
當我輸入一個號碼,它只是退出了。這裏是錯誤(我輸入四個):
dddd
Exit status: 0
logout
Saving session...
...copying shared history...
...saving history...truncating history files...
...completed.
幫助將不勝感激。
您需要一個循環。您正在生成一個隨機結果,然後重複該結果字符串幾次。 –