解决方法
将列表作为列表参数传递给数据:
In [11]: l = range(1,100) pd.DataFrame(data=[l]) Out[11]: 0 1 2 3 4 5 6 7 8 9 ... 89 90 91 92 93 94 95 96 \ 0 1 2 3 4 5 6 7 8 9 10 ... 90 91 92 93 94 95 96 97 97 98 0 98 99 [1 rows x 99 columns]
您可以将列名称作为arg传递给DataFrame构造函数或直接分配:
pd.DataFrame(data = [l],columns = col_list)
要么
df.columns = col_list