I used the below code to read a file in Python:
with open ("data.txt", "r") as myfile:
data=myfile.readlines()
Input file is:
LLKKKKKKKKMMMMMMMMNNNNNNNNNNNNN
GGGGGGGGGHHHHHHHHHHHHHHHHHHHHEEEEEEEE
and when I print data I get
['LLKKKKKKKKMMMMMMMMNNNNNNNNNNNNN\n', 'GGGGGGGGGHHHHHHHHHHHHHHHHHHHHEEEEEEEE']
As I see data is in list form. How do I make it string? Also, how can I remove the characters, "\n", "[", and "]" from this output?