Computer Science, asked by bharatbhushan787898, 4 months ago

Find and write the output of the following python code: 1

a=10

def call():

global a

a=15

b=20

print(a)

call()​

Answers

Answered by arbaz11533
3

Answer:

ì10 20 30 40 50 60 70 80 90 100

Similar questions