Jump to content

Recommended Posts

Posted

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.

Posted

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().

Posted (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 by Funce

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...