Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

replace commas with spaces python

commas_string = "Hello,World,foo,bar"
spaces_string = comma_string.replace(',', ' ')

print(spaces_string)
# Hello World foo bar
 
PREVIOUS NEXT
Tagged: #replace #commas #spaces #python
ADD COMMENT
Topic
Name
4+9 =