Dann mach ich halt alles alleine wie immer

main
Philipp Benning 2023-01-10 14:26:11 +01:00
parent 070d773d51
commit f76c83b832
1 changed files with 23 additions and 0 deletions

23
python.py 100644
View File

@ -0,0 +1,23 @@
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
x = np.linspace(0, 10, 50)
y1 = np.power(x,2)
y2 = np.power(x,3)
plt.plot (x,y1)
plt.plot (x,y2)
plt.xlim((1,5))
plt.ylim((0,30))
plt.tight_layout()
plt.xlabel('x')
plt.ylabel('y')
plt.title('ChatGpt seine Lernkurve')
plt.legend()
plt.show()