python wykres (po usunięciu)
Data utworzenia: 2024-11-27 12:13:03
import matplotlib.pyplot as plt
import numpy as np
#plot1
x = np.array([0, 1, 2, 3])
y = np.array([3, 8, 1, 10])
plt.subplot(2,1,1)
plt.plot(x,y)
#plot 2
x = np.array([0, 1, 2, 3])
y = np.array([10, 20, 30, 40])
plt.subplot(2,1,2)
plt.plot(x,y)
plt.show()
Powrót