python 3 how to remove white spaces

preview_player
Показать описание
Python 3 How to remove white spaces

1. Remove leading and trailing space

words = ' Python is powerful... and fast; '

2. Remove all spaces

words = ' Python is powerful... and fast; '

3. Remove consecutive spaces

words = ' Python is powerful... and fast; '

More regex:

---------------------------------------------------------------------------------------------------------------------------------------------------------------
Code store

Socials

If you really find this channel useful and enjoy the content, you're welcome to support me and this channel with a small donation via PayPal.

Рекомендации по теме
Комментарии
Автор

Thanks bro, I mean literally thank you very much. You've appeared as a life saver for

kunjan
Автор

how to remove the white spaces in a couple of lines of code written in the end....instead of stripping at each function or variable

analyst
Автор

How to add Space after some string. Example string "ABCDEF", the output will Print "AB CDE F", how to do that?

erikandribudiman