In [1]:
import math
import numpy as np

In [2]:
print(math.__name__)


math

In [3]:
print(np.__name__)


numpy

In [4]:
import hello

In [5]:
print(hello.__name__)


hello

In [6]:
hello.func()


Hello!
__name__ is hello