2021
08-06
08-06
Python数据分析之pandas读取数据
一、三种数据文件的读取二、csv、tsv、txt文件读取1)CSV文件读取:语法格式:pandas.read_csv(文件路径)CSV文件内容如下:importpandasaspdfile_path="e:\\pandas_study\\test.csv"content=pd.read_csv(file_path)content.head()#默认返回前5行数据content.head(3)#返回前3行数据content.shape#返回一个元组(总行数,总列数),总行数不包括标题行content.index#返回索引,是一个可迭代的对象<class'p...
继续阅读 >