Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #63172 > unrolled thread

print range in python3.3

Started byluofeiyu <elearn2014@gmail.com>
First post2014-01-05 15:38 +0800
Last post2014-01-05 15:38 +0800
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python


Contents

  print range in python3.3 luofeiyu <elearn2014@gmail.com> - 2014-01-05 15:38 +0800

#63172 — print range in python3.3

Fromluofeiyu <elearn2014@gmail.com>
Date2014-01-05 15:38 +0800
Subjectprint range in python3.3
Message-ID<mailman.4931.1388908323.18130.python-list@python.org>
>>> range(1,10)
range(1, 10)
>>> print(range(1,10))
range(1, 10)

how can i get 1,2,3,4,5,6,7,8,9 in python3.3 ?

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web