Answers for "remove extra whitespace in python"

2

remove extra spaces and empty lines from string python

"n".join([s for s in code.split("n") if s])
Posted by: Guest on March-13-2021
0

python strip whitespace

s1 = '  abc  '

print(f'String ='{s1}'')

print(f'After Removing Leading Whitespaces String ='{s1.lstrip()}'')

print(f'After Removing Trailing Whitespaces String ='{s1.rstrip()}'')

print(f'After Trimming Whitespaces String ='{s1.strip()}'')
Posted by: Guest on December-25-2020

Code answers related to "remove extra whitespace in python"

Python Answers by Framework

Browse Popular Code Answers by Language