Computer Science, asked by adiadi0326, 7 months ago

which names are local , which are
global and which are built-in in the following code fragment?
Which names are local, which are
invaders = 'Big names'
print(len (invaders ) == 0)
max_level = level + 10
pos = 200
level = 1
def play()
return max_level
res = play)
print(res)​

Answers

Answered by alkavicky2
6

Explanation:

the scope which is in intendation that is local scope

the scope which is in nonindendation that is global scope

built in function are those function which are already defined by python

Similar questions