This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for line in open('a.txt'): | |
# print line | |
a_id = line.find("sid:") | |
a_rev = line.find("rev:") | |
# print a_id | |
# print a_rev | |
print line[a_id+4:a_rev-2] | |
print line[a_rev+4:-3] | |
for line in open('b.txt'): |