8
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Pythonでrangeで作ったリストを逆順で走査

8
Posted at
for i in range(10):
    print(i, end=' ')
# 0 1 2 3 4 5 6 7 8 9 

for i in reversed(range(10)):
    print(i, end=' ')
# 9 8 7 6 5 4 3 2 1 0 
8
3
3

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?