Question: I have written a small book/booklet (only 35000 c…

Twetch ·

Question:
I have written a small book/booklet (only 35000 characters). Should I divide it into about 150 parts and twetch it?

Replies

Twetch ·

I vote yes, for whatever its worth (about 2¢)

Twetch ·

Any tips on how to cut it without writing a Python tool?

Twetch ·

sure id rather have anything than useless redundant memes at this point

Twetch ·

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()