0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【Python練習問題】range()編

Last updated at Posted at 2024-09-29

下記記事の続きです。
リストではありませんが、
関連項目として抑えておくと覚えやすいです。

3.range()

Q.3-1:次のコードを実行した結果を答えなさい

list = range(5)
for i in list:
    print(i)

Q.3-2:次のコードを実行した結果を答えなさい

list = range(2,5)
for i in list:
    print(i)

Q.3-3:次のコードを実行した結果を答えなさい

list = range(0,7,2)
for i in list:
    print(i)

Q.3-4:次のコードを実行した結果を答えなさい

list = range(-1,3)
for i in list:
    print(i)

Q.3-5:次のコードを実行した結果を答えなさい

list = range(7,2,-1)
for i in list:
    print(i)

Q.3-6:次のコードを実行した結果を答えなさい

list = range(7,2)
for i in list:
    print(i)
0
0
0

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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?