In this program, we will take a string as input and swap commas and dots in a string.
Steps to solve the program
- Take a string as input.
- Swap commas with dots in the string using replace().
- Print the output.
#Input string
string = "sqa,tools.python"
#Replacing , by .
string.replace(",",".")
Output :
'sqa.tools.python'