z.B._pr3_skriptspr_team12_s2/python.py

15 lines
197 B
Python
Raw Permalink Normal View History

import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
plt.title('ChatGpt seine Lernkurve')
2023-01-10 14:31:26 +01:00
a = np.random.random((100,100))
plt.imshow(a)
2023-01-10 14:31:26 +01:00
plt.hot()
2023-01-10 14:31:26 +01:00
plt.colorbar()
plt.show()