Python创建空列表的方法有以下几种:
1. 使用中括号 []
```python
empty_list = []
```
2. 使用 list() 函数
```python
empty_list = list()
```
3. 使用内置的空列表对象 []
```python
empty_list = list([])
```
4. 使用 range() 函数
```python
empty_list = list(range(0))
```
5. 使用生成器表达式
```python
empty_list = [x for x in []]
```
以上都是创建空列表的常见方法,你可以根据自己的喜好和需求选择其中的一种来创建空列表。