使用Python編的猜數字小遊戲

import random secret = random.randint(1, 30) guess = 0 tries = 0 print("我叫丁丁,我有一個祕密數字!") print("數字從1到30,你只有6次機會!") while int(guess) != secret and tries < 6: print("你猜的數字是?") guess = input()
相關文章
相關標籤/搜索