I am reading some text from a text file that says hello my name is Matthew. But when i print it it says ['Hello my name is matthew']. Does anyone know how to trim the [' '] from the string?
Code below
File1 = open('Text.txt')
PlainText = File1.readlines()
File1.close()
print(PlainText)