How to remove leading whitespace to show triple-quoted strings with the left edge in Python

1 Answer

0 votes
import textwrap

s = """Python is a programming language that lets you work quickly 
       and integrate systems more effectively. The core of extensible programming 
       is defining functions. Python allows mandatory and optional arguments, 
       keyword arguments, and even arbitrary argument lists."""

text_dedent = textwrap.dedent(s)     
  
print(text_dedent)



'''
run

Python is a programming language that lets you work quickly 
       and integrate systems more effectively. The core of extensible programming 
       is defining functions. Python allows mandatory and optional arguments, 
       keyword arguments, and even arbitrary argument lists.

'''

 



answered Apr 26, 2019 by avibootz

Related questions

1 answer 200 views
1 answer 166 views
1 answer 164 views
1 answer 208 views
3 answers 436 views
...