摘要: Python包主要有.whl和.tar.gz两种格式 1.在线安装 pip install xxx 2. whl文件安装 利用cd命令切换到whl文件所在目录,然后运行pip install xxx.whl即可完成安装 3.tar.gz文件安装 解压后打开cmd,python setup.py in 阅读全文
posted @ 2020-03-23 13:55 腹肌猿 阅读(1044) 评论(0) 推荐(0) 编辑
摘要: #pandas基本应用 import pandas as pd #两种数据结构,Series和DataFrame #Series df1=pd.Series([1,2,3,4,5],index=("a","b","c","d","e")) print(df1) # a 1 # b 2 # c 3 # 阅读全文
posted @ 2020-03-23 00:26 腹肌猿 阅读(192) 评论(0) 推荐(0) 编辑