Computer Science, asked by deepakbajaj6198, 11 months ago

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 vaishu15594
1

Answer:

i= i+10

50+10

60

this is the output of given programme

Similar questions