üretici nesne örneği

This commit is contained in:
Mert Gör ☭ 2023-06-12 14:41:06 +03:00
parent 824faa026d
commit 8f1f8f4ea1
No known key found for this signature in database
GPG Key ID: 2100A876D55B39B9
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
x = (i * i for i in range(10))
print(type(x))
for i in x:
print(i, end=' ')