python处理excle实例之字符串减法
本文最后更新于:2020年3月5日 晚上
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
from openpyxl import load_workbook
def str_A_cut_B(a, b): if b: for x in a: if x in b: a = a.replace(x, "") return a
wb = load_workbook(filename='test.xlsx')
sheet = wb['Sheet1']
for i in range(2, 36): temp = 'C' + str(i)
str1 = sheet[temp].value str0 = "张 朱 颜 赵 杨 施 胡 何 秦 刘 夏 鹏 李 唐 许 王 邓 顾" z = str_A_cut_B(str0, str1)
if str1: for j in range(len(z)): print(z[j], end=' ') print('\n', end='') else: print('\n', end='')
|