![]() |
|
|
|
#1
|
|||
|
|||
|
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) |
|
#2
|
|||
|
|||
|
In my code, there are no variables named "int"
|
![]() |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|