python中取得length的函数是什么

  • Post category:Python

Python 中获取字符串或者列表的长度可以使用内置的 len() 函数,该函数可以返回一个对象的长度,如字符串中字符的个数、列表中元素的数量等。

示例代码1:获取字符串长度

my_string = "Hello, World!"
length = len(my_string)
print("The length of the string is:", length)

运行结果:

The length of the string is: 13

在这个示例里,我们定义了一个字符串 my_string,它包含了 13 个字符。然后我们使用 len() 函数获取该字符串的长度,并将结果存储在变量 length 中。最后我们打印了结果,结果为 13。

示例代码2:获取列表长度

my_list = [1, 2, 3, 4, 5]
length = len(my_list)
print("The length of the list is:", length)

运行结果:

The length of the list is: 5

在这个示例里,我们定义了一个包含了 5 个元素的列表 my_list。然后我们使用 len() 函数获取该列表的长度,并将结果存储在变量 length 中。最后我们打印了结果,结果为 5。

总结:

len() 函数是 Python 中获取字符串或者列表长度的常用函数,只需要将需要获取长度的对象作为函数的参数传递给 len() 函数即可。