Create NumPy Array I
Use the NumPy library to create a simple array with the values from the list li.
import numpy as np
li = [10,20,30,40,50]
# complete code here
arr = np.
print(arr)
Python
Setting up Python environment...
Output