python中len()
时间: 2023-05-27 15:03:52 浏览: 159
Python API len函数操作过程解析
5星 · 资源好评率100%
函数的功能是计算一个对象中元素的个数,返回一个整数。len()函数可以用于字符串、列表、元组、字典、集合等类型的数据结构。
例如:
```python
str1 = "hello"
print(len(str1)) # 输出:5
lst = [1, 2, 3]
print(len(lst)) # 输出:3
tpl = (1, 2, 3)
print(len(tpl)) # 输出:3
dict1 = {'a': 1, 'b': 2, 'c': 3}
print(len(dict1)) # 输出:3
set1 = {1, 2, 3}
print(len(set1)) # 输出:3
```
在计算字符串长度时,其中的空格和标点符号也会被计算在内。在计算字典的长度时,len()函数返回的是键值对的个数。
阅读全文