我正在学习python并从事练习。其中之一是对投票系统进行编码,以便使用列表在比赛的23名球员中选择最佳球员。
我正在使用Python3。
我的代码:
players= [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]
vote = 0
cont = 0
while(vote >= 0 and vote <23):
vote = input('Enter the name of the player you wish to vote for')
if (0 < vote <=24):
players[vote +1] += 1;cont +=1
else:
print('Invalid vote, try again')
我懂了
TypeError:“ str”和“ int”的实例之间不支持“ <=”
但是我这里没有任何字符串,所有变量都是整数。
三国纷争
慕容708150
哈士奇WWW
相关分类