摘要: # coding:utf-8 import xlrd def save(): # db, cur = dbconnect() file_name = "xxxx.xls" file = xlrd.open_workbook(file_name) # 输出Excel中表的个数 # print(file 阅读全文
posted @ 2021-01-14 09:33 乔小生1221 阅读(66) 评论(0) 推荐(0) 编辑
摘要: git restore --staged xxx 的作用是将暂存区的文件从暂存区撤出,但不会更改文件文件的内容。 git restore xxx 指令使得在工作空间但是不在暂存区的文件撤销更改(内容恢复到没修改之前的状态) 阅读全文
posted @ 2021-01-14 09:24 乔小生1221 阅读(57) 评论(0) 推荐(0) 编辑