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().
查看更多关于在Python中TypeError:/:’str’和’str’的不支持的操作数类型的详细内容...
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://www.haodehen.cn/did171256