Jump to content

What is mean by "ordered" in LIST (Array):-Paython


Raktim

Recommended Posts

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.

Link to comment
Share on other sites

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
Link to comment
Share on other sites

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