x = 42 def foo(x, y=x): return x + y if __name__ == '__main__': print('foo(3) returns', foo(3))