Advertisement
rfmonk

textwrap_fill.py

Dec 30th, 2013
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. #!/usr/bin/env python
  2.  
  3. import textwrap
  4. from textwrap_example import sample_text
  5.  
  6. print 'No dedent:\n'
  7. print textwrap.fill(sample_text, width=50)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement