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.
範囲内の機能が機能しません:
for x in range(0, 10): print str(x)
2 (またはその他の個別のインクリメント) でカウントしたい場合はどうすればよいですか? Java または C ではこれは簡単ですが、Python では、ループの反復ごとにカウンターの増分を設定することもできますか?
範囲関数は、3 番目の引数としてステップ値を取ります..
for x in range(0, 10, 2): print str(x)