Learn Before
Relation

Built-in methods of Lists

The list data type has the following built-in methods

  • append(x)
  • extend(iterable)
  • insert(i, x)
  • remove(x)
  • pop([i])
  • clear()
  • index(x[, start[, end]])
  • count(x)
  • sort(*, key=None, reverse=False)
  • reverse()
  • copy()

0

0

Updated 2021-06-01

Tags

Python Programming Language

Data Science