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


Groups > comp.lang.python > #63172

print range in python3.3

Date 2014-01-05 15:38 +0800
From luofeiyu <elearn2014@gmail.com>
Subject print range in python3.3
Newsgroups comp.lang.python
Message-ID <mailman.4931.1388908323.18130.python-list@python.org> (permalink)

Show all headers | View raw


>>> 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 ?

Back to comp.lang.python | Previous | Next | Find similar | Unroll thread


Thread

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

csiph-web