VOOZH about

URL: https://www.geeksforgeeks.org/python/list-methods-in-python-set-1-in-not-in-len-min-max/

⇱ List Methods in Python | Set 1 (in, not in, len(), min(), max()...) - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

List Methods in Python | Set 1 (in, not in, len(), min(), max()...)

Last Updated : 3 Aug, 2022

List methods are discussed in this article.


1. len() :- This function returns the length of list.

List = [1, 2, 3, 1, 2, 1, 2, 3, 2, 1] print(len(List)) Output: 10


2. min() :- This function returns the minimum element of list.

List = [2.3, 4.445, 3, 5.33, 1.054, 2.5] print(min(List)) Output: 1.054


3. max() :- This function returns the maximum element of list.

List = [2.3, 4.445, 3, 5.33, 1.054, 2.5] print(max(List)) Output: 5.33


Output
The length of list is : 5
The minimum element of list is : 1
The maximum element of list is : 5

Output: 

The length of list is : 5
The minimum element of list is : 1
The maximum element of list is : 5


4. index(ele, beg, end) :- This function returns the index of first occurrence of element after beg and before end. 

List = [1, 2, 3, 1, 2, 1, 2, 3, 2, 1] print(List.index(2)) Output: 1


5. count() :- This function counts the number of occurrences of elements in list.

List = [1, 2, 3, 1, 2, 1, 2, 3, 2, 1] print(List.count(1)) Output: 4


Output
The first occurrence of 3 after 3rd position is : 5
The number of occurrences of 3 is : 2
Comment
Article Tags: