LoginSignup
2
0

More than 5 years have passed since last update.

six.moves.rangeメモ

Posted at

six.moves.range()についてのメモ

以下の3文はすべて同じ意味.

# python3
for i in range(10):
# python2
for i in xrange(10):
# sixモジュール使用
import six
for i in six.moves.range(10):
2
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
2
0