Compare commits

...

2 Commits
master ... main

1 changed files with 15 additions and 0 deletions

15
python.py 100644
View File

@ -0,0 +1,15 @@
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
plt.title('ChatGpt seine Lernkurve')
a = np.random.random((100,100))
plt.imshow(a)
plt.hot()
plt.colorbar()
plt.show()