This website works better with JavaScript
Home
Explore
Help
Sign In
pythoncoder8
/
code-wars
Watch
1
Star
0
Fork
0
Files
Issues
0
Pull Requests
0
Wiki
Tree:
61836515d1
Branches
Tags
main
code-wars
/
8 kyu
/
Remove String Spaces
/
Remove String Spaces.py
Remove String Spaces.py
47 B
History
Raw
1
2
def
no_space
(x)
:
return
x.replace(
' '
,
''
)