当前位置 : 主页 > 编程语言 > python >

python – TypeError:/:’str’和’str’的不支持的操作数类型

来源:互联网 收集:自由互联 发布时间:2021-06-25
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().

网友评论