gpt4 book ai didi

python - 我怎样才能使这个 python 代码更短、更高效

转载 作者:太空宇宙 更新时间:2023-11-04 04:53:25 27 4
gpt4 key购买 nike

<分区>

这是我尝试做一个更高/更低的游戏。

import random
print("A game of Higher or Lower")
number = random.randint(1, 100)
choice = int(input("Please pick a number between 1 & 100: "))
if choice < number:
print("Higher")
elif choice > number:
print("Lower")
else:
print("Well done!")
while choice != number:
choice = int(input("Pick again: "))
if choice < number:
print("Higher")
elif choice > number:
print("Lower")
else:
print("Well done!")

我是 python 的新手,我只是想知道是否有一种方法可以缩短代码以提高效率?不要认为需要两个“if/elif/else”语句但看不到合并它们的方法。对不起,如果这是一个愚蠢的问题!

更新代码:

import random
print("A game of Higher or Lower")
number = random.randint(1, 100)
choice = ""
while choice != number:
choice = int(input("Please pick a number: "))
if choice < number:
print("Higher")
elif choice > number:
print("Lower")
else:
print("Well done!")

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com