2020年8月14日

初 识 eric4

摘要: 下图展示了,如何使用eric4 新建工程,创建窗体,编译工程,运行工程这几个过程 阅读全文

posted @ 2020-08-14 21:25 不知所以随风飘动 阅读(138) 评论(0) 推荐(0) 编辑

一键打开 jupyter

摘要: 一般打开jupyter notebook 是以下步骤: 打开cmd 输入:jupyter notebook 按Enter键 为了省事,写了一个.py文件实现上述步骤,代码如下: import os Q = 'jupyter notebook' res = os.popen(Q) 保存为1.py 假设 阅读全文

posted @ 2020-08-14 13:50 不知所以随风飘动 阅读(898) 评论(0) 推荐(0) 编辑

Python 用DataFrame读 存 excel

摘要: 读 代码: import pandas as pd e = r'D:\pywork\12\excel信息表.xlsx' df = pd.DataFrame(pd.read_excel(e)) 存 D.to_excel(r'D:\pywork\12\excel信息.xlsx',index=None) 阅读全文

posted @ 2020-08-14 12:11 不知所以随风飘动 阅读(4968) 评论(0) 推荐(0) 编辑

导航