标题: 为什么提示TypeError: unsupported operand type(s) for %: 'NoneType' and '... [打印本页] 作者: Chloe 时间: 2018-2-21 18:00 标题: 为什么提示TypeError: unsupported operand type(s) for %: 'NoneType' and '... 为什么提示 TypeError: unsupported operand type(s) for %: 'NoneType' and 'tuple' ?
game文件里的数据是[0,0,0],错误行是最后一行,代码如下: from random import randint
f=open('game.txt')#读取文件里的成绩 score=f.read().split() game_times=int(score[0])#分别存入变量 min_times=int(score[1])
total_times=int(score[2])
if game_times>0:#计算游戏的平均轮数 ava_times=float(total_times)/game_times else:
ava_times=0