I'm using readlines, and if I do
It prints this:
Loading TheTextLoadedFromFile
...
Notice the ... is on a new line. Why is this happening? It's like the string contains a line break.
Code:
print 'Loading %s...' % (stringFromReadlines)
Loading TheTextLoadedFromFile
...
Notice the ... is on a new line. Why is this happening? It's like the string contains a line break.