I used textwrap.fill (textwrap.fill(text, 6))
to limit each line in only 6 characters, but there is a problem with using this command because my purpose is go to new line exact at 6 character, I mean:
for example using textwrap.fill(I am a student, 8)
:
what I want:
(I am a s
tudent)
output:
(I am a
student)