Advertisement
Guest User

Untitled

a guest
Mar 17th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. file = open('input.txt')
  2. s = file.readline()
  3. while s:
  4. a = s.split('\t')
  5. k = 73 - len(a[4])
  6. print('{0}{1}{2}'.format(a[0][:7], '.' * k, a[4]))
  7. file.close()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement