這是我的代碼:爲什麼我用下面的Python代碼獲取TypeError?
x = input("Enter a number: ")
print(50/x)
這給了我下面的錯誤:
Traceback (most recent call last):
File "<pyshell#1>", line 1, in <module>
print(50/x)
TypeError: unsupported operand type(s) for /: 'int' and 'str'
輸入讀取錯誤。你正試圖用一個str來劃分一個int。 – user3591723