我正在基于https://stackoverflow.com/a/10404455/1349141
转动表格此代码非常完美。但是,当我修改我的表的代码时。它在'。'附近显示一个神秘的不正确语法。对于第二个with open('listA.txt') as a:
listA = a.readlines()
a.close()
with open('listB.txt') as b:
listB = b.readlines()
b.close()
diff = list(set(listB) - set(listA))
#One choice for printing
print '[%s]' % ', '.join(map(str, diff))
下方的行。
这是我的代码
declare