What will be the output of the following code :- i=5
def checkGlobal():
global i
i=i+10
print(i)
checkGlobal()
Answers
Answered by
0
11
Answered by
0
Answer: 15
Explanation:
Similar questions