1
我不斷收到此錯誤。 TypeError:'str'對象不可調用TypeError:'str'對象不可調用 - Python
我搜索了我所有的代碼,甚至沒有在任何地方使用str這個詞。
if again():
print ('%s LAST: %s') % (k, tx)
m = 1
k = 0.001
amount = k/0.00000001
amount = int(amount)
print ('Doing %s k') % k
do(amount, int(m)) # The error occurs here
else:
#code
可能是'int',但不太可能給出'int(amount)'兩行的存在。 –
@ LasseV.Karlsen:不,因爲錯誤發生在'do()'行上,而不是前兩行,其中也使用'int()'。 –
在我的世界裏,我沒有理所當然,可能是多線程:)但我同意,這是'做'。 –