t225.py 66 B

123456
  1. def a():
  2. x = "OK"
  3. print x
  4. del x
  5. print "after"
  6. a()