Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~458 People Reached
Favorite Forums
Favorite Tags
Member Avatar for Pavol

Hi, I have text file where I have these lines with numbers: e, 1, 2 e, 1, 3 e, 2, 1 e, 3, 4 etc. I need remove similar lines, in this case line e, 2, 1. Is it possible?

Member Avatar for David W
0
303
Member Avatar for Pavol

Hi, I am not using Python but I have script in python: part of script `elif line.find("CONECT") > -1: con = line.split() line_value = line_value + 1 #print line_value #print con[2] try: line_j = "e" + ', ' + str(line_value) + ', ' + con[2] + "\n" output_file.write(line_j) print(line_j) line_i …

Member Avatar for TrustyTony
0
155