What is the output of the following snippet?
def loc( ):
y=”local”
loc( )
print(y)
Answers
Answered by
0
Answer:
Explanation:
def loc():
y="loc"
loc( )
Print(y)
Similar questions