Computer Science, asked by veswarm2003, 1 month 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