Browse Source

Create Remove String Spaces.py

PythonCoder8 3 years ago
parent
commit
c5864af995
1 changed files with 2 additions and 0 deletions
  1. 2 0
      8 kyu/Remove String Spaces/Remove String Spaces.py

+ 2 - 0
8 kyu/Remove String Spaces/Remove String Spaces.py

@@ -0,0 +1,2 @@
+def no_space(x):
+    return x.replace(' ', '')