Computer Science, asked by neekitamallik2002, 9 months ago

What is the utility and significance of list, briefly in python

Answers

Answered by shradda95
26

Answer:

Lists are just like the arrays, declared in other languages. Lists need not be homogeneous always which makes it a most powerful tool in Python. In Python, list is a type of container in Data Structures, which is used to store multiple data at the same time. Unlike Sets, the list in Python are ordered and have a definite count. The elements in a list are indexed according to a definite sequence and the indexing of a list is done with 0 being the first index. Each element in the list has its definite place in the list, which allows duplicating of elements in the list, with each element having its own distinct place and credibility

Answered by HanitaHImesh
6

The List in python is a most adaptable datatype accessible in Python which can be composed as a rundown of comma-isolated qualities (things) between square sections.  

  • Significant thing about a list is that things in a list need not be of a similar sort.  
  • Rundown is significantly utilized with lexicons when there is enormous number of information.
  • The components in a list are filed by a distinct arrangement and the ordering of a rundown is finished with 0 being the primary record.
Similar questions
Math, 5 months ago