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 188 views
1 answer 153 views
1 answer 155 views
1 answer 196 views
3 answers 418 views
...