Variable Scope Classic Python has only two scope levels: local and global (module level) Variable is created in a scope by assigning it a value Global declaration is necessary to indicate value assigned in function is actually a global callCount = 0 def myFunc(): global callCount ... callCount = callCount + 1