When reading the text a text document, python seems to be replacing parts of it with other characters.
Here's the contents of the text documents:
zKeh&aZTo@kgLPo2
r#Zd[$xcGa()rd:l
asdf uo NAgyu$\+
vB=# dsU Zkd sdV
bb !w#d#Jkr{Pd$}
CehD *(T izP dx
mMoOww}lk~"cizPx
czgjueo#z@vruo<>
g$$ \|T{ Z$$ikmp
(We are decrypting this for a school project. Since the code to decrypt it happens after python changes the string, i'm not including the code.)
This here is the code used to read the text document:
# Open both the rules and test
fileTextDoc = open("test.txt")
fileRules = open("rule.txt")
# Put each line of the text file into a list
strTextDoc = fileTextDoc.readlines()
When the readlines() is triggered it puts each line into a list, but after this the strings all change:
(I am aware that in the text document it creates an invisible '\n' when making a new line, the '\n' is removed later on in the code.)
0:'zKeh&aZTo@kgLPo2\n'
1:'r#Zd[$xcGa()rd:l\n'
2:'asdf uo\tNAgyu$\\+\n'
3:'vB=# dsU Zkd sdV\n'
4:'bb !w#d#Jkr{Pd$}\n'
5:'CehD *(T izP dx\t\n'
6:'mMoOww}lk~"cizPx\n'
7:'czgjueo#z@vruo<>\n'
8:'g$$ \\|T{ Z$$ikmp\n'
If it is list use the list comprehension function to do the replace for each element. Replace the "\n" with space