摘要: 1 import zipfile 2 fp=zipfile.ZipFile('/Users/c2apple/Desktop/彩屏/旭威XW-6600.zip','r') 3 for f in fp.filelist: 4 print(f) 5 # 6 # 7 # 8 # 9 fp.close() 10 11 import rarfile 12 r=rarfil... 阅读全文
posted @ 2017-06-14 20:58 JustLittle 阅读(268) 评论(0) 推荐(0)
摘要: 1 ''' 2 使用xlrd模块写入Excel文件 3 ''' 4 import xlrd 5 book=xlrd.open_workbook(r'/Users/c2apple/Desktop/纪录/测试报告/张涛文件盘/骆洪文模版/彩屏带杨升/ZD-QR-730114 彩屏软件测试报告 00版.xlsx')#打开Excel文件 6 sheet1=book.sheet_b... 阅读全文
posted @ 2017-06-14 20:22 JustLittle 阅读(1965) 评论(0) 推荐(0)