podstawa.py
· 132 B · Python
Raw
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.image as im
tab = np.zeros((5,8))
plt.imshow(tab)
plt.show()
1 | import numpy as np |
2 | import matplotlib.pyplot as plt |
3 | import matplotlib.image as im |
4 | |
5 | |
6 | tab = np.zeros((5,8)) |
7 | |
8 | plt.imshow(tab) |
9 | plt.show() |