a=[12,23,34] a={12,23,34} I typed both of them in python 3.5 to see how it was different but couldn't understand it....
Here's my PowerShell
PS C:\Users\CBB\Desktop> python
Python 3.6.5 (v3.6.5:f59c0932b4, Mar 28 2018, 16:07:46) [MSC v.1900 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> a={12,12,12}
>>> a
{12}
>>> a={12,23,34}
>>> a
{34, 12, 23}
>>> a=[12,23,45,67]
>>> a
[12, 23, 45, 67]