Learn practical skills, build real-world projects, and advance your career
import jovian
#jovian.commit()

Topics to be Covered Today:-

List

Dictionary

Tuple

Set

Loop

List

  1. It is represented by square brackets []
  2. It always maintain the order of elements.
  3. In list, indexing starts from 0.
  4. Python follows negative indexing which starts from -1.
  5. List is mutuable (Changes are allowed)

Define your list