摘要: import xlrd # 读取execl wb = xlrd.open_workbook(filename=_path) # 获取地一个sheet页 sheet1 = wb.sheet_by_index(0) # 获取第二行,第9列数据(从 0开始计算) res = sheet1.cell(1,8 阅读全文
posted @ 2021-08-03 17:41 Tarzen 阅读(384) 评论(0) 推荐(0) 编辑
摘要: 之前一直用的是os模块,但是最新发现一个pathlib,面向文件对象 from pathlib import Path # 获取当前文件的路径 Path().cwd() # 获取当前文件的路径的上一层目录 Paht().cwd().parent 阅读全文
posted @ 2021-08-03 16:44 Tarzen 阅读(144) 评论(0) 推荐(0) 编辑