Answers for "python read text file and replace space by comma"

0

replace commas with spaces python

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

print(spaces_string)
# Hello World foo bar
Posted by: Guest on June-22-2021

Code answers related to "python read text file and replace space by comma"

Python Answers by Framework

Browse Popular Code Answers by Language