# # Jay Summet (Georgia Tech) # CS 1301 - Simple Function demos # print "before myFunc is defined" def myFunc(A,B): C = A * B print "This function takes in Two variables:", A, B print "C is:", C return C print "before the func call!" myRetVal = myFunc(4.5, 3) print "After the Func call, myRetVal is:", myRetVal