Computer Science, asked by byme481, 2 months ago

n=10
def fun():
global n
for x in range(2,n+1,2):
x+=2
print(x)
fun()

Answers

Answered by CoderRishav
1

Answer:

x will be 12 so output will be 12 atlast

please notes it's python so tab space always matter here so after ':' give some space to under what to say Actually

Similar questions