1-100 toplam 2. örnek

This commit is contained in:
Mert Gör 🇹🇷 2023-05-21 20:26:19 +03:00
parent 5731c0e015
commit f189eddf26
No known key found for this signature in database
GPG Key ID: 2100A876D55B39B9

6
1-100.2.py Normal file
View File

@ -0,0 +1,6 @@
i = 1
total = 0
while i<= 100:
total = total + i
i = i + 1
print(total)