在Python中,列表(list)可以使用以下方式進行定義:
1. 使用方括號 []:
```python
my_list = [1, 2, 3, 4, 5]
```
2. 使用 list() 函數:
```python
my_list = list([1, 2, 3, 4, 5])
```
3. 使用列表解析(list comprehension):
```python
my_list = [x for x in range(1, 6)]
```
4. 使用空列表創建空的列表:
```python
empty_list = []
```
以上是幾種常見的定義列表的方法。在Python中,列表是一種有序、可變、允許重復元素的數據結構,可以存儲任意類型的數據。