Guest User

Untitled

a guest
Nov 22nd, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. import inspect
  2.  
  3. idx = 0
  4. def get_my_code():
  5. global idx
  6. x = "abcd" + str(idx)
  7. return x
  8.  
  9. code = inspect.getsource(get_my_code)
  10. print(code)
  11. exec(code)
Add Comment
Please, Sign In to add comment