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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!