1.1 NumPy
python
import numpy as np
arr = np.array([1, 2, 3, 4, 5])
print(arr)
1.2 Pandas
python
import pandas as pd
data = pd.read_csv('data.csv')
print(data.head())
1.3 Matplotlib
python
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
plt.plot(x, y)
plt.show()
pip install numpy