python 统计字符串的长度
时间: 2023-12-29 15:04:56 浏览: 35
python 计算字符串长度。(示例)
可以使用 Python 内置函数 `len()` 来统计字符串的长度。例如:
```python
string = "Hello, World!"
length = len(string)
print(length) # 输出 13
```
其中,`len()` 函数的参数可以是字符串、列表、元组等可迭代对象。
阅读全文
python 计算字符串长度。(示例)