python算字符串长度
时间: 2024-02-29 09:50:20 浏览: 163
Python中字符串List按照长度排序
在Python中,可以使用内置函数`len()`来计算字符串的长度。`len()`函数返回字符串中字符的数量,包括空格和特殊字符。下面是一个示例:
```python
string = "Hello, World!"
length = len(string)
print("字符串的长度为:", length)
```
输出结果为:
```
字符串的长度为: 13
```
阅读全文