有關亂數用法請參考https://dotblogs.com.tw/chris0920/2010/10/25/18560
隨機產生整數
import random
import time
random.seed(time.time())
x = random.randint(0, 100)
print(x)
簡單猜數字小遊戲
import random
import time
random.seed(time.time())
x = random.randint(0, 100)
play = True
while play:
y = input("請輸入一個數字:")
if x == int(y) :
print("恭喜您!答對了!")
play = False
elif x > int(y) :
print("太小")
elif x < int(y) :
print("太大")
沒有留言:
張貼留言