Python零基礎學習程式碼實踐——模擬彩票中獎

我是王佳俊發表於2019-01-16
#模擬彩票隨機中獎
import random
num = int(input("請輸入您的號碼:"))

res = random.choice(range(100))+1
print("本期中獎號碼為:", res)

#判斷是否中獎2
if res == num:
    print("恭喜您中獎了!!!")
else:
    print("您未中獎,再接再厲!")


相關文章