pandas 初体验 第三题

# -*- coding: utf-8 -*-

from pandas import Series,DataFrame

import  pandas as pd

def read_csv_data():

    '''

    返回值:

    df1: 一个DataFrame类型数据

    length1: 一个int类型数据

    '''

    # 请在此添加代码 完成本关任务

    # ********** Begin *********#

    df1=pd.read_csv('test3/uk_rain_2014.csv')#把文件导入df1中

    df1.columns = ['water_year','rain_octsep','outflow_octsep','rain_decfeb', 'outflow_decfeb', 'rain_junaug', 'outflow_junaug']  #修改列名   DataFrame类型数据.columns=['填写你修改的名字']

    length1=len(df1)#把df1的长度放在length1中

    # ********** End **********#

    #返回df1,length1

    return df1,length1

老规矩  看懂了再抄

你可能感兴趣的:(学习打卡,python)