fork download
  1. def f():
  2. x = 1
  3. locals()['x'] = 2
  4. print x
  5.  
  6. f()
Success #stdin #stdout 0.02s 9016KB
stdin
Standard input is empty
stdout
1