Last active 1732001379

Pokazuje tablicę zer 5x8 jako obrazek

GGORG revised this gist 1732001378. Go to revision

1 file changed, 9 insertions

podstawa.py(file created)

@@ -0,0 +1,9 @@
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()
Newer Older