reversed range example

This commit is contained in:
Mert Gör ☭ 2023-09-03 15:14:09 +03:00
parent 68b3b5c160
commit 86b03a8f09
No known key found for this signature in database
GPG Key ID: 2100A876D55B39B9
2 changed files with 3 additions and 0 deletions

View File

View File

@ -0,0 +1,3 @@
for i in reversed(range(10)):
print(i, end = ' ')
print()