List: collection which is ordered and changeable. But, if I create a list 'car' which is Unordered like that...
car=["BMW","MAHINDRA","HERO","KTM"]
print(car)
SO, it does not support 'list' properties. But print result is ['BMW', 'MAHINDRA', 'HERO', 'KTM'] .
Please help me that how it works even the 'list' is unordered, why it don't show any error message.