Question: A variable defined inside a function is a local variable; otherwise, it is a global variable. If a local variable has the same name as
A variable defined inside a function is a local variable; otherwise, it is a global variable.
If a local variable has the same name as a global variable, the local variable is used inside the function.
What does this print?
def myFunc1 ():
one = -1
print (one, two)
one = 1
two = 2
print (one, two)
myFunc1 ()
print (one two)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
