Swap commas and dots in a string.

In this program, we will take a string as input and swap commas and dots in a string.

Steps to solve the program
  1. Take a string as input.
  2. Swap commas with dots in the string using replace().
  3. Print the output.
				
					#Input string
string = "sqa,tools.python"

#Replacing , by .
string.replace(",",".")
				
			

Output :

				
					'sqa.tools.python'

				
			

convert a string into a list of words.

count and display the vowels in a string

Leave a Comment