gpt4 book ai didi

python - 对于范围(5)中的 i 和范围(2)中的 k : TypeError: 'bool' object is not iterable

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

我确信有更好的方法来执行最后一个语句。只是想检查 dayOfWeek 是否在 weekdayweekend

中找到

到目前为止我的代码:

dayOfWeek = input('What day is it?\n')

weekDay = ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday']
weekend = ['Saturday', 'Sunday']


for i in range(5) and k in range(2):
if dayOfWeek != weekDay[i] and dayOfWeek != weekend[k]:
print("You didn't enter a Day of the week")

最佳答案

要检查某个项目是否在列表中,只需使用 in 运算符:

if not(DayOfWeek in weekend or DayOfWeek in weekday):
print('You did not enter a day!')

关于python - 对于范围(5)中的 i 和范围(2)中的 k : TypeError: 'bool' object is not iterable,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55365331/

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