python 編寫猜硬幣小遊戲

猜硬幣解法1 import random guess = ‘’ while guess not in [0,1]: print(’------猜硬幣遊戲------’) print(‘猜一猜硬幣是正面仍是反面?’) guess = int(input(’「正面」請輸入0,「反面」請輸入1:’)) #注意要用int()將字符串類型轉換爲數字類型 toss = random.randint(0,1)
相關文章
相關標籤/搜索