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
Browse Source
Create Remove String Spaces.py
PythonCoder8
3 years ago
parent
e97736c526
commit
c5864af995
1 changed files
with
2 additions
and
0 deletions
Split View
Show Diff Stats
2
0
8 kyu/Remove String Spaces/Remove String Spaces.py
+ 2
- 0
8 kyu/Remove String Spaces/Remove String Spaces.py
View File
@@ -0,0 +1,2 @@
+def no_space(x):
+ return x.replace(' ', '')