name_list = []
时间: 2023-12-23 18:05:45 浏览: 57
这是一个空的列表,可以用来存储一组数据。可以通过 append() 方法向其中添加元素。例如:
```python
name_list = []
name_list.append("Alice")
name_list.append("Bob")
name_list.append("Charlie")
print(name_list) # 输出 ['Alice', 'Bob', 'Charlie']
```
阅读全文