转自:https://www.tutorialspoint.com/python_pandas/python_pandas_dataframe.htm 1.数据框4特性 列是不同类型的数据元素. 每列的长度可变 行和列都有标签 对行和列可进行算术运算. 可将其视为SQL表.//这个十分容易理解了. 2.创建 pandas.DataFrame( data, index, columns, dtype, copy) 其中Data可以是list,dict,array,series,map,等. Lis…