concepts.benchmark.gridworld.crafting_world.crafting_world_gen.utils.underline_to_space#

underline_to_space(s)[source]#

Converts a string from underlined to a space-separated and lower case string.

Example

>>> underline_to_space("Hello_world")
"hello world"
Parameters:

s (str) –

Return type:

str