Home / Python Numpy / How to Create an Alias While Importing NumPy In this example we will show how to create an alias while importing NumPy in Python. Source Code import numpy as np n = np.array([1, 2, 3, 4]) print(n) Output: [1 2 3 4]