Skip to content

Instantly share code, notes, and snippets.

@izikeros
Created December 24, 2023 05:20
Show Gist options
  • Select an option

  • Save izikeros/ca3d0103635df4aac2930c762870ff93 to your computer and use it in GitHub Desktop.

Select an option

Save izikeros/ca3d0103635df4aac2930c762870ff93 to your computer and use it in GitHub Desktop.
python wrap text
from textwrap import fill
text = 30 * "Hello world! "
print(fill(text, width=80))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment