07 2021 档案

摘要:#参考网站 https://pandas.pydata.org/pandas-docs/stable/ #加载pandas库 import pandas as pd #创建表格-pd.DataFrame #df = pd.DataFrame({行表头1:[列数据1],行表头2:[列数据2]...}) 阅读全文
posted @ 2021-07-15 23:48 在路上的羊咩 阅读(73) 评论(0) 推荐(0)
摘要:Error: EPERM: operation not permitted, mkdir"xxx" 原因 : 没有权限 (不允许操作) 解决办法:以管理员身份运行CMD 阅读全文
posted @ 2021-07-13 23:24 在路上的羊咩 阅读(25) 评论(0) 推荐(0)
摘要:import tkinter as tk from tkinter import filedialog #只想显示对话框,添加这两行代码 root = tk.Tk() root.withdraw() #选择文件夹 返回文件夹路径 folderPath = filedialog.askdirector 阅读全文
posted @ 2021-07-09 15:13 在路上的羊咩 阅读(1806) 评论(0) 推荐(0)