你好我有这个代码
print('Please enter each category you would like (type ex to exit)')
x = True
while x == True:
category = input('Next:')
if str(category).lower != 'ex':
categories.append(category)
print ('Here are your current categories' + str(categories))
else:
x = False
break
如果我输入' ex'它没有打破循环,我无法弄清楚它为什么不起作用
答案 0 :(得分:1)
.lower()
函数。请改用str(category).lower()
。
而且我只是评论这个,所以我知道我找到了答案