How to get the length of a list in Python? (code example)

青灯夜游
Release: 2019-03-22 14:37:22
Original
72053 people have browsed it

Lists are an integral part of daily programming in Python, and it is essential to understand the related operations of lists. The following article will show you how to get the length of a list in Python. I hope it will be helpful to you.

How to get the length of a list in Python? (code example)

Method 1: Loop Counter

In this method, just run a loop and increment Counter, until the last element of the list is traversed, its count is obtained, which is the length of the list. This method is the most basic way to get the length of a list.

Code example: Using a loop to traverse the counter to get the list length

# 初始化列表
List = [ 1, 4, 5, 7, 8 ] 
  
# 输出列表
print ("列表为: " + str(List)) 
  
# 初始化计数器,使用循环查找列表长度
counter = 0
for i in List: 
      
    #递增计数器
    counter = counter + 1
  
# 输出列表长度
print ("列表长度为: " + str(counter))
Copy after login

Output:

How to get the length of a list in Python? (code example)

##Method 2: Use len()

Python len() method to return the length or number of items of an object (character, list, tuple, etc.). It provides the most common and simplest way to find the length of any list; it is also the most common technique employed today.

Code example: Use the len() method to get the list length

Example 1:

# 初始化列表
List = [ "php", "python", 3, 7,"html" ] 
List.append(6) 
List.append("Hello") 
# 输出列表
print ("列表为: " + str(List)) 
# 输出列表长度
print ("列表长度为: " ,len(List))
Copy after login

Output:

How to get the length of a list in Python? (code example)

Example 1:

n = len([10, 20, 30]) 
# 输出列表长度
print ("列表长度为:" ,n)
Copy after login

Output:

列表长度为:3
Copy after login

Method 3: Using length_hint()

In Python, you can also use the length_hint() method to find the length of a list. This method is a little-known technique for finding the length of a list; it is defined in the operator class and returns the number of elements present in the list.

Code example: Use the length_hint() method to get the list length

from operator import length_hint
# 初始化列表
List = [ 1, 4, 5, 7, 8 ]
# 输出列表
print ("列表为: " + str(List)) 
list_len_hint =length_hint(List)
# 输出列表长度
print ("列表长度为: " + str(list_len_hint))
Copy after login
Output:


How to get the length of a list in Python? (code example)

Related video tutorial recommendations: "

Python Tutorial"

The above is the entire content of this article, I hope it will be helpful to everyone's learning. For more exciting content, you can pay attention to the relevant tutorial columns of the PHP Chinese website! ! !

The above is the detailed content of How to get the length of a list in Python? (code example). For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact [email protected]
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!