w3resource

Python: Display formatted text as output

Python String: Exercise-26 with Solution

Write a Python program to display formatted text (width=50) as output.

Sample Solution:

Python Code:

# Import the 'textwrap' module, which provides text formatting capabilities.
import textwrap
# Define a multi-line string 'sample_text' with a text content.
sample_text = '''
  Python is a widely used high-level, general-purpose, interpreted,
  dynamic programming language. Its design philosophy emphasizes
  code readability, and its syntax allows programmers to express
  concepts in fewer lines of code than possible in languages such
  as C++ or Java.
  '''

# Print an empty line for spacing.
print()

# Use the 'textwrap.fill' function to format the 'sample_text' with a line width of 50 characters.
# This function wraps the text to fit within the specified width and prints the result.
print(textwrap.fill(sample_text, width=50))

# Print an empty line for spacing.
print()

Sample Output:

 Python is a widely used high-level, general-                                                               
purpose, interpreted,   dynamic programming                                                                   
language. Its design philosophy emphasizes   code                                                             
readability, and its syntax allows programmers to                                                             
express   concepts in fewer lines of code than                                                                
possible in languages such   as C++ or Java.    

Flowchart:

Flowchart: Display formatted text as output

Python Code Editor:

Previous: Write a Python program to create a Caesar encryption.
Next: Write a Python program to remove existing indentation from all of the lines in a given text.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://198.211.115.131/python-exercises/string/python-data-type-string-exercise-26.php