""" return.py Looking at return values """ def foo(x): return 2*x def bar(x): print 2*x a = foo(32) c = 100 b = bar(c) print "a is ", a print "b is ", b print foo(foo(foo(2)))