Computer Science, asked by ansh27759, 4 months ago

What are lists? Write the name of two types of list? Write their significance​

Answers

Answered by tanujagautam107
0

Answer:

plz mark me as brainliest

Explanation:

List is a way to group together related piece of information, so that they are easy to read and understand.

The three list types

unordered list — used to group a set of related items in no particular order.

ordered list — used to group a set of related items in a specific order.

description list — used to display name/value pairs such as terms and definitions.

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.

Similar questions