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 amjad ben hedhili
Recipients amjad ben hedhili
Date 2018-03-19.13:36:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1521466579.3.0.467229070634.issue33103@psf.upfronthosting.co.za>
In-reply-to
Content
It will be much of improvement for readability to write:

my_list = ["John", "Richard", "Alice", 1, True, 2.1, "End"]
a, b, c = my_list[1, 3, -1]

instead of:

my_list = ["John", "Richard", "Alice", 1, True, 2.1, "End"]
a, b, c = my_list[1], my_list[3], my_list[-1]
History
Date User Action Args
2018-03-19 13:36:19amjad ben hedhilisetrecipients: + amjad ben hedhili
2018-03-19 13:36:19amjad ben hedhilisetmessageid: <1521466579.3.0.467229070634.issue33103@psf.upfronthosting.co.za>
2018-03-19 13:36:19amjad ben hedhililinkissue33103 messages
2018-03-19 13:36:19amjad ben hedhilicreate