Raktim 0 Report post Posted February 10 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. Quote Share this post Link to post Share on other sites
dsonesuk 875 Report post Posted February 10 The order is the index order the Items are listed, you can insert them any order and it will always display in that same order unless sorted for example using sort(). Quote Share this post Link to post Share on other sites
Funce 33 Report post Posted February 10 (edited) 12 hours ago, Raktim said: SO, it does not support 'list' properties. But print result is ['BMW', 'MAHINDRA', 'HERO', 'KTM'] . Expanding on what dsonesuk has said, a more fitting representation of this list is [ 0: 'BMW', 1: 'MAHINDRA', 2: 'HERO', 3: 'KTM' ] It is technically ordered, just not by what you think. Edited February 10 by Funce Quote Share this post Link to post Share on other sites
Raktim 0 Report post Posted February 11 Yes, now I understand... Thanks Quote Share this post Link to post Share on other sites