içlemler liste 1

This commit is contained in:
Mert Gör ☭ 2023-06-11 13:22:30 +03:00
parent 58eb87baae
commit c5878dfc86
No known key found for this signature in database
GPG Key ID: 2100A876D55B39B9
1 changed files with 9 additions and 0 deletions

9
python-temel/iclemler.py Normal file
View File

@ -0,0 +1,9 @@
x = list(range(-10, 11, 1))
y = [i * i for i in x]
print(x)
print(y)
import matplotlib.pyplot as plt
plt.plot(x,y)