Suppose you have this file named func.py:
def func(x):
y = raw_input(x)
return y
func(z)
And then you have this calling code:
z = raw_input('Type a request for input and hit enter: ')
omega = execfile('func.py')
print(omega)
Why does the output always end up being "None?"