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 154 views
1 answer 156 views
1 answer 197 views
3 answers 419 views
...