Guest User

Untitled

a guest
Jul 20th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. class Blah:
  2. arg = 0
  3. def __init__(self, arg):
  4. self.arg = arg
  5.  
  6. x = '1'
  7. y = 'Blah'
  8.  
  9. exec 'z = %s(x)' % y
  10.  
  11. print z
  12.  
  13. # Btw reinteract is the shiznat.
Add Comment
Please, Sign In to add comment