头哥字符串长度python
时间: 2023-11-20 19:58:25 浏览: 116
以下是获取字符串长度的Python代码示例:
```python
string = "Hello, world!"
length = len(string)
print("The length of the string is:", length) # 输出:The length of the string is: 13
```
使用len()函数可以获取字符串的长度,该函数返回字符串中字符的数量。
阅读全文