Computer Science, asked by veswarm2003, 2 months ago

What is the output of the following snippet?
def loc( ):
y=”local”
loc( )
print(y)​

Answers

Answered by dinesham003
0

Answer:

Explanation:

def loc():

y="loc"

loc( )

Print(y)

Similar questions