Skip to content

Instantly share code, notes, and snippets.

@abhinavkorpal
Created April 12, 2017 05:21
Show Gist options
  • Save abhinavkorpal/a99b6ad049291f9ee010f21a6dce5334 to your computer and use it in GitHub Desktop.
Save abhinavkorpal/a99b6ad049291f9ee010f21a6dce5334 to your computer and use it in GitHub Desktop.
Text Wrap
def wrap(string, max_width):
return textwrap.fill(string,max_width)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment