In [1]:
import math
import numpy as np
In [2]:
print(math.__name__)
In [3]:
print(np.__name__)
In [4]:
import hello
In [5]:
print(hello.__name__)
In [6]:
hello.func()