摘要: 4.1 import random def guess_number(): target = random.randint(1, 100) count = 0 while True: guess = int(input("请输入你猜的数字(1-100): ")) count += 1 if gues 阅读全文
posted @ 2025-03-31 22:32 kk/ 阅读(48) 评论(0) 推荐(0)