Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ステップ サイズ 10 の for ループを使用して、7 で終わるすべての 2 桁の数字を昇順で出力するプログラムを作成します。
どこから始めればいいのか、どうすればいいのかわかりません。助けてください!
range
range(stop) range(start, stop[, step])
range(stop)
range(start, stop[, step])
>>> for n in range(17, 100, 10): print n 17 27 37 47 57 67 77 87 97