Python String Replace Space with Dash Example
Hello Developer,
In this tutorial, we will go over the demonstration of python replace space with dash. step by step explain python string replace whitespace with dash. This example will help you how to replace space with dash in python. you'll learn how to replace space with dash in python string.
In this example, I will add myString variable with hello string. Then we will use replace() function to replace space with dash in python string. So, without further ado, let's see simple examples: You can use these examples with python3 (Python 3) version.
Example
main.py
myString = 'It Solution Stuff com' # python string replace space with dash newString = myString.replace(' ', '-') print(newString)
Output:
It-Solution-Stuff-com
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- Python String Replace Tab with Space Example
- How to Replace Underscore with Space in Python?
- How to Replace Whitespace with Underscore in Python?
- Python List Replace Single with Double Quotes Example
- Python List Replace Double Quotes with Single Example
- Python String Replace Single with Double Quotes Example
- Python String Replace Double Quotes with Single Quotes Example
- Python String Replace All Numbers Example
- Python String Replace Special Characters with Space Example
- Python String Replace Multiple Spaces with Single Space Example
- Python Replace Last Character Occurrence in String Example
- Python Replace First Character Occurrence in String Example
- Python Replace Last Occurrence in String Example