Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.datemas.de!rt.uk.eu.org!newsfeed.xs4all.nl!newsfeed1.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: UNSURE 0.260 X-Spam-Level: ** X-Spam-Evidence: '*H*': 0.55; '*S*': 0.07; '>>>': 0.22; 'header:User- Agent:1': 0.23; 'received:google.com': 0.35; 'received:10': 0.37; 'message-id:@gmail.com': 0.38; 'to:addr:python-list': 0.38; 'to:addr:python.org': 0.39; 'how': 0.40; 'charset:gb2312': 0.80 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; bh=SpbKyu4j96kHMJofh+IW3CYS5p6MY70WFy21iUf/nnQ=; b=DIJUxRCD7nYMoyJ3yqcJRD+PmJi6D6M6Gi4rNH9Jz+Hker4dqlJ20gz+R8vYgovjAc GPmHYlPaFB8TzFX5mcIdePwy2DiQoUoW4yvI9Y/HzHyP4Wch6mzyhd545YhDUevETXF/ qpxNofLF0CrftHdg7/ZXY0JWSEvfivJjLjSPj+Ei5CdkMKzk3BBD4lwk9V7UDc8gL5z0 3HLVt/bopEfQ9kOekEBXnXCgkomPQdj1RCf6K4TSyhSsjnOWXkMmdIahODW3i2fT2K/q d3D10A/oBUNspuoSN9j+CMVeb0h9rR8i1UW6WK75tDuXCo1WA9ahwCKwMcx8wocEceZE gKNw== X-Received: by 10.68.190.103 with SMTP id gp7mr112554426pbc.74.1388907492084; Sat, 04 Jan 2014 23:38:12 -0800 (PST) Date: Sun, 05 Jan 2014 15:38:13 +0800 From: luofeiyu User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: python-list@python.org Subject: print range in python3.3 Content-Type: text/plain; charset=GB2312 Content-Transfer-Encoding: 7bit X-Mailman-Approved-At: Sun, 05 Jan 2014 08:52:02 +0100 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 6 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1388908323 news.xs4all.nl 2854 [2001:888:2000:d::a6]:43661 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:63172 >>> 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 ?