5.3 Python len()函数:获取字符串长度或字节数
len()
函数在Python中用于获取对象(如字符串、列表、元组等)中元素的数量。对于字符串而言,len()
函数返回字符串的字符数。对于字节串(byte string),它将返回字节的数量。
解法1:获取字符串长度
str = "Hello, World!"
length = len(str)
print(length) # 输出:13
解法2:获取字节串长度
byte_str = b"Hello, World!"
length = len(byte_str)
print(length) # 输出:13
解法3:获取列表长度
list = [1, 2, 3, 4, 5]
length = len(list)
print(length) # 输出:5
解法4:获取元组长度
tuple = (1, 2, 3, 4, 5)
length = len(tuple)
print(length) # 输出:5
解法5:获取字典键的数量
dict = {'a': 1, 'b': 2, 'c': 3}
length = len(dict)
print(length) # 输出:3
解法6:获取集合的元素数量
set = {1, 2, 3, 4, 5}
length = len(set)
print(length) # 输出:5
以上就是Python中len()函数的基本用法。
评论已关闭