Write the output of the following code:
k=10
def change():
global k
k=25
print(k)
change
Answers
Answered by
1
Answer:
last line would be change()
and output is 25
Explanation:
please mark brainliest
Similar questions