[New-bugs-announce] [issue46321] Don't need delineators on lists

Devin Harper report at bugs.python.org
Sun Jan 9 16:05:30 EST 2022


New submission from Devin Harper <345trig at gmail.com>:

a=1
b=2
c=3
list=a, b, c
#Remove spaces at the end of lists. Because sometimes spaces are errors or not depending on the number of items in your list. Remove list delineators to save a little memory and time not typing those delineator symbols on list definitions.
for items in list:
    print(items)

----------
assignee: docs at python
components: Documentation
messages: 410169
nosy: 345trig, docs at python
priority: normal
severity: normal
status: open
title: Don't need delineators on lists
type: resource usage

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue46321>
_______________________________________


More information about the New-bugs-announce mailing list