gpt4 book ai didi

python - 在单个语句中在 python 中多次测试单个变量

转载 作者:行者123 更新时间:2023-11-28 20:44:28 25 4
gpt4 key购买 nike

我在大学学习 Python,并了解了逻辑运算符和条件语句的工作原理。我的问题是:有没有什么方法可以压缩这样的代码?

if (day != "Sunday" and day != "Saturday" and day != "Friday" and day != "Thursday" and day != "Wednesday" and day != "Tuesday" and day != "Monday"):
print "That is not a day"
return 0

欢迎任何建议,我知道上面的例子很简单。

最佳答案

您可以使用 in 关键字。

if day not in ("Sunday", "Saturday", "Friday", "Thursday", "Wednesday", "Tuesday", "Monday"):

关于python - 在单个语句中在 python 中多次测试单个变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26342446/

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