View Single Post
  #5  
Old 05-16-2006, 05:04 PM
Gladsomebeast Gladsomebeast is offline
Member
 
Join Date: Mar 2005
Location: Isla Vizta, CA
Posts: 397
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)
Reply With Quote