# Would it make a difference if the parameter was called y instead of # x? def other(x): print x def main(): x = 1 print x other(5) print x