python里用print的时候报错
seconds = 100
print('Total time: %.1f minutes'%seconds/60)
完全不明白为什么出错了,错误信息是
TypeError: unsupported operand type(s) for /: 'str' and 'int'
1个回答
你上面报错信息是说你用字符串和整数做了除法,自然就报错了。
你在seconds/60的周围少了一对括号,应该是
print('Total time: %.1f minutes'%(seconds/60))
SofaSofa数据科学社区DS面试题库 DS面经
啊,多谢~我都没注意到是因为括号!
-
R琳
2019-09-13 14:57