gpt4 book ai didi

python - 在没有 if 语句的情况下检查输入是否为空

转载 作者:行者123 更新时间:2023-12-05 05:45:27 26 4
gpt4 key购买 nike

我需要检查输入是否为空,不能使用 if 语句。

print("What is your name?")
name = input()
print("Hi, {}".format(name))

最佳答案

使用 while 循环,仅当 name 的长度为 0 时才终止:

name = ""
while len(name) == 0:
print("What is your name?")
name = input()
print("Hi, {}".format(name))

关于python - 在没有 if 语句的情况下检查输入是否为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71388917/

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