摘要: # 下划线转驼峰 def str2Hump(text): arr = filter(None, text.lower().split('_')) res = '' j = 0 for i in arr: if j == 0: res = i else: res = res + i[... 阅读全文
posted @ 2019-04-28 15:30 zipon 阅读(2973) 评论(0) 推荐(0) 编辑
摘要: def getDataFromExcel(excelPath): file = load_workbook(excelPath) sheetnames = file.sheetnames print(sheetnames) ws = file[sheetnames[0]] for i in rang 阅读全文
posted @ 2019-04-28 00:36 zipon 阅读(1376) 评论(0) 推荐(0) 编辑