name = input('Enter name here:')pyc = input('enter pyc :')tpy = input('enter tpy:')percent = (pyc / tpy) * 100;print (percent)input('press enter to quit') 每当我运行这个程序,我得到这个 TypeError: unsupported operand type(s) fo
name = input('Enter name here:') pyc = input('enter pyc :') tpy = input('enter tpy:') percent = (pyc / tpy) * 100; print (percent) input('press enter to quit')
每当我运行这个程序,我得到这个
TypeError: unsupported operand type(s) for /: 'str' and 'str'
我该怎么做才能将pyc除以tpy?
通过将它们变成整数:percent = (int(pyc) / int(tpy)) * 100;
在python 3中,input()函数返回一个字符串.总是.这是Python 2的变化; raw_input()函数被重命名为input().