summaryrefslogtreecommitdiff
path: root/progs/a171.py
diff options
context:
space:
mode:
Diffstat (limited to 'progs/a171.py')
-rw-r--r--progs/a171.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/progs/a171.py b/progs/a171.py
new file mode 100644
index 0000000..64686f7
--- /dev/null
+++ b/progs/a171.py
@@ -0,0 +1,5 @@
+def remove_length(test_str, K):
+ temp = test_str.split()
+ res = [ele for ele in temp if len(ele) != K]
+ res = ' '.join(res)
+ return (res) \ No newline at end of file