I want to read file including spaces in each lines
My current code
def data():
f = open("save.aln") for line in f.readlines(): print "</br>" print line
I am using python and output embedded in html
File to be read - http://pastebin.com/EaeKsyvg
Thanks