# Author: James Tam # Version: February 10, 2008 # Example to illustrate the creation of local variables # @ fun(none) # @returns(nothing) def fun(): num1 = 1 num2 = 2 print(num1, " ", num2) # Start function fun()