Thanks!
___
Python-Dev mailing list -- python-dev@python.org
To unsubscribe send an email to python-dev-le...@python.org
https://mail.python.org/mailman3/lists/python-dev.python.org/
Message archived at
https://mail.python.org/archives/list/python-dev@py
Currently:
l = [] # new empty list
t = () # new empty tuple
s = set() # new empty set (no clean and consistent way of initializing
regarding the others) <<<
d = {} # new empty dictionary
Possible solution:
s = {} # new empty set
d = {:} # new empty dictionary (the ":" is a reference to key-value