globe=0 globe=myfun(globe) def myFun(var): return var+1
This mystifies me. What is myfun()? What is var intended to be?
myfun is an error ;-) should be myFun, of course.
var is parameter of function myFun. If you call myFun with variable globe, all references to var will be replaced by globe inside function myFun.
-pu -- http://mail.python.org/mailman/listinfo/python-list