美文网首页
python读写文件

python读写文件

作者: Aerosols | 来源:发表于2019-07-07 09:00 被阅读0次

    (1)python读nc
    https://blog.csdn.net/showpingzhang/article/details/83384780

    (2)matplotlib
    内置颜色https://matplotlib.org/gallery/color/named_colors.html#sphx-glr-gallery-color-named-colors-py
    颜色组及渐变颜色 https://matplotlib.org/gallery/color/colormap_reference.html

    (3)python读写excel文件

    ### read files
    data=pd.read_excel(path,'sheet name',header=None)
    
    ### write files
    writer = pd.ExcelWriter('data.xlsx')
    df.to_excel(writer, sheet_name=str(i))
     writer.save()
    

    https://blog.csdn.net/weixin_38168620/article/details/81380897

    相关文章

      网友评论

          本文标题:python读写文件

          本文链接:https://www.haomeiwen.com/subject/clavhctx.html