Hello I am very new to programming, the most I know is basic HTML.
I'm trying to section text into 256 character portions. From what I learned I should use
inFile = open('words.txt', 'r')
to open a text file
contents = inFile.read()
print(contents)
then I should use
str1 = file.read(256)
to group this text.
But I do not understand how to use these two.