Sololearn: Learn to Code
New course! Every coder should learn Generative AI!
Try a free lesson
+ 13
Brackets are used to make lists Braces are used to make dictionary Parenthesis are used to make tuple But for indexing in all of those, only brackets are used.
23rd Mar 2019, 9:49 AM
Letsintegreat
Letsintegreat - avatar
+ 10
Without further information I would assume that {} indicates a set. s = {1, 2, 3, 3, 3, 4} print(s) # {1, 2, 3, 4} (set of unique elements)
23rd Mar 2019, 11:59 AM
Anna
Anna - avatar