name = input('Enter name here:')
pyc = input('enter pyc :')
tpy = input('enter tpy:')
percent = (pyc/tpy) * 100;
print (percent)
input('press enter to quit')
每當我運行這個程序,我得到這個類型錯誤:不支持的操作數類型(S)爲/:「海峽」和「海峽」
TypeError: unsupported operand type(s) for /: 'str' and 'str'
我可以做什麼用TPY分PYC?
或者潛在的,'float's或'decimal.Decimal's適當的,如果你需要接受不完整的整數數字。 – 2013-03-05 22:54:09