Received: by 10.68.223.40 with SMTP id qr8mr15326557pbc.0.1341637092706; Fri, 06 Jul 2012 21:58:12 -0700 (PDT) Path: l9ni11068pbj.0!nntp.google.com!news1.google.com!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail From: iMath Newsgroups: comp.lang.python Subject: =?windows-1252?Q?What=92s_the_differences_between_these_two__pieces_o?= =?windows-1252?Q?f_code_=3F?= Date: Fri, 6 Jul 2012 21:56:35 -0700 (PDT) Organization: http://groups.google.com Lines: 14 Message-ID: <48fbfc85-c495-4131-a18a-1ebb94e7ce20@googlegroups.com> NNTP-Posting-Host: 182.242.151.88 Mime-Version: 1.0 X-Trace: posting.google.com 1341637091 1713 127.0.0.1 (7 Jul 2012 04:58:11 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Sat, 7 Jul 2012 04:58:11 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=182.242.151.88; posting-account=Z1-aQQoAAADvnuKxr9sysEiuPIcBNfjX User-Agent: G2/1.0 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable What=92s the differences between these two pieces of code ? (1) for i in range(1, 7): print(2 * i, end=3D' ') (2) for i in range(1, 7): print(2 * i, end=3D' ') print() when executed both respectively in Python shell ,I get the same effect .= Who can tell me why ?