1. 使用方括号`[]`创建空列表:
```python
empty_list = []
2. 使用`list()`函数创建空列表:
```python
empty_list = list()
两种方法都可以创建一个没有任何元素的列表。
如果您需要创建一个空的Excel表格,可以使用第三方库`poexcel`,使用以下命令安装:
```
pip install poexcel -U
然后,您可以使用以下代码创建一个空白的Excel文件:
```python
import poexcel
poexcel.fake2excel(rows=0, path='./test/test.xlsx')
这将创建一个指定路径(在本例中为`./test/test.xlsx`)的空白Excel文件。