rangeで指定する範囲の数字のリストを作成
指定する範囲の数字のリスト(昇順)を作成
a = list(range(1,10,2))
print(a)
#実行結果
[1, 3, 5, 7, 9]
第一引数: start(含む) デフォルトは0、省略可
第二引数: end(含まない) 省略不可
第三引数: 幅 デフォルトは1、省略可
降順のリストを作成
a = list(range(10,0,-1))
print(a)
#実行結果
[10, 9, 8, 7, 6, 5, 4, 3, 2, 1]
Author And Source
この問題について(rangeで指定する範囲の数字のリストを作成), 我々は、より多くの情報をここで見つけました https://qiita.com/ErinaYoshida/items/8d4e553fc6d1d4a7139c著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .