提取a.txt, b.txt两个文件中有相同文字的b.txt文件中的那行?with open a.txt, b.txt as a, b:for va, vb in a, b:if va in vb:print vb?