CodeWars Python Solutions Remove String Spaces Simple, remove the spaces from the string, then return the resultant string. Given Code def no_space(x): #your code here Solution def no_space(x): return x.replace(" ", "") See on CodeWars.com