xxxxxxxxxx
Press "Ctrl + H" or "Cmd + H" and it will bring up Find and Replace menu.
Just type a space in the find box and type an underscore in the replace box.
xxxxxxxxxx
string_with_underscore = "hello_world"
string_with_space = string_with_underscore.replace("_", " ")
print(string_with_space)