Get your own Python server Result Size: 625 x 565
x
 
x = 300
def myfunc():
  x = 200
  print(x)
myfunc()
print(x)
200
300