Question: I have written a small book/booklet (only 35000 c…
Question:
I have written a small book/booklet (only 35000 characters). Should I divide it into about 150 parts and twetch it?
Replies
I vote yes, for whatever its worth (about 2¢)
Any tips on how to cut it without writing a Python tool?
sure id rather have anything than useless redundant memes at this point
Never mind that was easy as pie.
Book = "this is the book"
Start = 0
End = 256
For i in range (0, int(len(Book)/256)):
print (Book[Start:End))
Start = Start + 256
End = End + 256
print()