fork download
  1. class A():
  2. math = __import__('math')
  3. def __init__(self):
  4. pass
  5.  
  6. def a(self):
  7. print(self.math)
  8.  
  9.  
  10.  
  11. A().a()
Success #stdin #stdout 0.02s 8736KB
stdin
Standard input is empty
stdout
<module 'math' (built-in)>