I'm getting a little stuck here. Say I have a text file that reads:
AAAAAA BBBBBBB
SDSDDSDSD CCCC HEY
And I want Python to convert it into one, continuous string that reads:
AAAAAABBBBBBBSDSDDSDSDCCCCHEY
Only thing is, I need to use the re module. How do I go about doing that? Thanks!