python计算长度
时间: 2023-08-13 09:12:25 浏览: 104
你可以使用Python中的"len()"函数来计算字符串、列表、元组等对象的长度。例如,要计算字符串的长度,你可以这样做:
```python
string = "Hello, World!"
length = len(string)
print(length)
```
这将输出字符串的长度,即13。同样,你也可以使用"len()"函数计算其他可迭代对象的长度。
相关问题
Python计算元组长度
可以使用 Python 内置函数 `len()` 来计算元组的长度。例如,假设有一个元组 tuple,可以使用以下代码计算它的长度:
```python
tuple = (1, 2, 3, 4, 5)
length = len(tuple)
print("元组的长度为:", length)
```
输出结果为:
```
元组的长度为: 5
```
python计算元组的长度
在Python中,可以使用内置函数`len()`来计算元组的长度。元组是一种有序的不可变序列,可以包含任意类型的元素。以下是计算元组长度的示例代码:
```python
my_tuple = (1, 2, 3, 4, 5)
length = len(my_tuple)
print("元组的长度为:", length)
```
输出结果为:
```
元组的长度为: 5
```
阅读全文