I have a text document in the format of:
-1+1
-1-1
+1+1
-1-1
+1-1
...
I want to have a program that counts how many lines have -1+1 lines and +1-1 lines. The program would then just need to return the value of how many lines are like this. I have written the code:
f1 = open("results.txt", "r")
fileOne = f1.readlines()
f1.close()
x = 0
for i in fileOne:
if i == '-1+1':
x += 1
elif i == '+1-1':
x += 1
else:
continue
print x
But for some reason it always returns 0 and I have no idea why.
Any help would me much appreciated as I have been looking at this for hours!!

withstatement when dealing with files!) – Lattyware Jan 10 at 14:43sort results.txt | uniq -ctells you which lines and how often appear in the file. – eumiro Jan 10 at 14:49'+1-1' in i. Which will check if the string occurs ininot just if the values are equal. – Ophion Jan 10 at 14:49