What will be the output of the following code :-i=5def checkGlobal(): i=50 global i i=i+10 print(i)605510Error in the code
Answers
Answered by
1
Answer:
i= i+10
50+10
60
this is the output of given programme
Similar questions