Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.1k views
in Technique[技术] by (71.8m points)

string - TypeError: 'str' object is not callable - Python

I keep getting this error. TypeError: 'str' object is not callable

I searched all my code and I don't even use the word str anywhere.

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
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You assigned a string to do somewhere.

You'll need to search your code to see where you do that, or rename the do() function to something else to resolve the conflict.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...