fin cours 3

This commit is contained in:
pvalarcher
2022-10-26 18:22:20 +02:00
parent a261e7597e
commit 1b77a88561
8 changed files with 86 additions and 3 deletions

4
python/3/dessin.py Normal file
View File

@@ -0,0 +1,4 @@
import matplotlib.pyplot as plt
plt.plot([1,2,3,4])
plt.ylabel('des nombres')
plt.show()