Text Wrap

  • + 0 comments
    import textwrap
    
    def wrap(string, max_width):
        return textwrap.fill(string, max_width)