python 字符串长度
时间: 2023-07-24 20:07:38 浏览: 73
在 Python 中,可以使用 `len()` 函数获取字符串的长度。例如:
```python
my_string = "Hello, world!"
print(len(my_string)) # 输出 13
```
上述代码中,`len()` 函数返回字符串 `my_string` 的长度,即 13。
相关问题
Python 字符串长度
在Python中,要获取字符串的长度可以使用len()函数。该函数的语法如下:
```python
len(string)
```
其中,string是要获取长度的字符串。下面是一个示例:
```python
string = "Hello, World!"
length = len(string)
print("字符串的长度为:", length) # 输出:字符串的长度为: 13
```
python字符串长度
在Python中,可以使用内置函数 `len()` 来获取字符串的长度。例如,以下是一个字符串变量 `str` 的长度获取方法:
```python
str = "Hello, World!"
print(len(str))
```
输出结果为:
```
13
```
因为字符串中包含 13 个字符(包括空格和标点符号)。
阅读全文