Question: Is the following program legal since the variable x is used in two different places (proc and main)? Why or why not? def proc(x): return
Is the following program legal since the variable x is used in two different places (proc and main)? Why or why not?
def proc(x): return 2*x*x def main(): x = 10 print(proc(x)) main()
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
