Laravel  
laravel
文档
数据库
架构
入门
php技术
    
Laravelphp
laravel / php / java / vue / mysql / linux / python / javascript / html / css / c++ / c#

len在python中的用法

作者:潮起潮落   发布日期:2025-03-30   浏览:63

# 使用 len() 函数获取字符串的长度
string = "Hello, World!"
length_of_string = len(string)
print(f"字符串 '{string}' 的长度是: {length_of_string}")

# 使用 len() 函数获取列表的长度
my_list = [1, 2, 3, 4, 5]
length_of_list = len(my_list)
print(f"列表 {my_list} 的长度是: {length_of_list}")

# 使用 len() 函数获取元组的长度
my_tuple = (1, 2, 3, 'a', 'b', 'c')
length_of_tuple = len(my_tuple)
print(f"元组 {my_tuple} 的长度是: {length_of_tuple}")

# 使用 len() 函数获取字典的长度
my_dict = {'name': 'Alice', 'age': 25, 'city': 'New York'}
length_of_dict = len(my_dict)
print(f"字典 {my_dict} 的长度是: {length_of_dict}")

# 使用 len() 函数获取集合的长度
my_set = {1, 2, 3, 4, 5}
length_of_set = len(my_set)
print(f"集合 {my_set} 的长度是: {length_of_set}")

解释说明:

  • len() 是 Python 内置函数,用于返回对象的长度或元素个数。
  • 可以对多种数据类型使用 len() 函数,例如字符串、列表、元组、字典和集合等。
  • 对于字符串,len() 返回字符的数量;对于列表、元组、集合,len() 返回元素的数量;对于字典,len() 返回键值对的数量。

上一篇:python 元组

下一篇:python import

大家都在看

python时间格式

python ord和chr

python list.pop

python的for i in range

npm config set python

python代码简单

python读取文件夹

python中turtle

python 输出时间

python中list代表什么

Laravel PHP 深圳智简公司。版权所有©2023-2043 LaravelPHP 粤ICP备2021048745号-3

Laravel 中文站