Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,885 questions

51,811 answers

573 users

How to use textwrap to wrap plain text in specific width with Python

1 Answer

0 votes
import textwrap

s = """Python is an easy to learn, powerful programming language.
It has efficient high-level data structures and a simple but effective
approach to object-oriented programming. Python’s elegant syntax
and dynamic typing, together with its interpreted nature, make it an
ideal language for scripting and rapid application development in many areas on
most platforms."""

lst = textwrap.wrap(s, width=40)

for element in lst:
    print(element)


'''
run:
 
Python is an easy to learn, powerful
programming language. It has efficient
high-level data structures and a simple
but effective approach to object-
oriented programming. Python’s elegant
syntax and dynamic typing, together with
its interpreted nature, make it an ideal
language for scripting and rapid
application development in many areas on
most platforms.

'''

 



answered Nov 17, 2018 by avibootz

Related questions

1 answer 135 views
135 views asked Aug 4, 2020 by avibootz
1 answer 216 views
216 views asked Aug 4, 2020 by avibootz
1 answer 173 views
2 answers 175 views
2 answers 168 views
1 answer 221 views
...