replace space with nothing in python code example
Example 1: space to underscore python
mystring.replace(" ", "_")
Example 2: trimming spaces in string python
a = " yo! "
b = a.strip() # this will remove the white spaces that are leading and trailing