This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Vishal Devgn
Recipients Vishal Devgn
Date 2017-06-25.11:11:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1498389087.09.0.895603326933.issue30753@psf.upfronthosting.co.za>
In-reply-to
Content
>>> a, b = 0, 1
>>> while b < 1000:
... print(b, end=',')
... a, b = b, a+b

in 3.6 as soon as i write print command, it displays an indentation error.
History
Date User Action Args
2017-06-25 11:11:27Vishal Devgnsetrecipients: + Vishal Devgn
2017-06-25 11:11:27Vishal Devgnsetmessageid: <1498389087.09.0.895603326933.issue30753@psf.upfronthosting.co.za>
2017-06-25 11:11:27Vishal Devgnlinkissue30753 messages
2017-06-25 11:11:26Vishal Devgncreate