这个简单的程序应该计算列表中的条目并打印有多少条目以及计算不在列表中的条目。但由于某种原因,它会将所有条目都计为 countIn,无论它们是否来自列表……感谢您的建议!
fruitsList = ['Apple', 'Banana', 'Grape', 'Peach', 'Mango',
'Pear', 'Papaya', 'Plum', 'Grapefruit', 'Cantaloupe']
countIn=0
countOut=0
while True:
response=input('Enter a fruit name (enter X to exit): ')
if response.upper() == 'X':
break
for response in fruitsList:
if response in fruitsList:
countIn += 1
break
else:
countOut += 1
print('The user entered' , countIn, ' items in the list')
print('The user entered' , countOut, ' items not in the list')