2017年9月15日

Python3的列表推导式

摘要: # -*- coding: utf-8 -*- li = [1,2,3,4,5,6,7,8,9]print ([x**2 for x in li]) print ([x**2 for x in li if x>5]) print (dict([(x,x*10) for x in li])) prin 阅读全文

posted @ 2017-09-15 11:37 sammy1989 阅读(422) 评论(0) 推荐(0) 编辑

python3修改Excel中固定单元格的内容

摘要: # coding:utf-8 import xlwt import xlrd from xlutils.copy import copy '''修改Excel中某个单元格的内容''' data = xlrd.open_workbook(r'D:\Letter1_YJFQ.xls', formatti 阅读全文

posted @ 2017-09-15 09:51 sammy1989 阅读(2891) 评论(0) 推荐(0) 编辑

导航