In your code, you have a part like this:
round = 42
After that you have written:
round((a/b)*0.9*c)
This means that the function call on the object bound to round, which is an int. And that fails. To solve this you have to find the code that binds an int to the name round and remove it.
I hope this helps you.