Computer Science, asked by rahulroy92231, 9 months ago

Define list in Python.

Answers

Answered by staeen
3

Answer:

A list is a data structure in Python that is a mutable, or changeable, ordered sequence of elements. Each element or value that is inside of a list is called an item. Just as strings are defined as characters between quotes, lists are defined by having values between square brackets [ ] .

mark me as BRAINLIEST

Answered by brokendreams
0

List in Python.

  • The list is a common handy datatype accessible in Python which can be addressed as a listing of comma-separated values within square brackets.
  • The essential information about a list is that objects in a list must not be of the identical type.
  • Building a list is as easy as setting several comma-separated contents within square brackets.
  • To obtain values in lists, practice the square brackets for slicing onward with the index or indices to get value obtainable at that list.

Learn more on Python:

https://brainly.in/question/14689905

what is python and advantage of python?​

https://brainly.in/question/4945545

How are string literals represented and implemented in Python

Similar questions