返回列表 发帖
  1. c = open('a.txt').readlines()
  2. for a in c:
  3.   a = a[0] + a[1::].replace(' '+a[0],'')
  4.   print a
复制代码

TOP

返回列表