![]() |
|
#5
|
|||
|
|||
|
The “TypeError: 'int' object is not callable” error message indicates that python expected a function in the place of an int object type. Perhaps there is a variable named int like in the following code.
Code:
import viz viz.go() int = 4 print int(1.1) |
|
|