I have a text file which contains a text such as: "001232029890"
And I want python to take this text and make a list in this manner:
list = [001,232,029,890]
That is, to split the text file into segments of n characters (in this case 3) and to put each of those segments in a list.