summaryrefslogtreecommitdiff
path: root/progs/a673.py
diff options
context:
space:
mode:
Diffstat (limited to 'progs/a673.py')
-rw-r--r--progs/a673.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/progs/a673.py b/progs/a673.py
new file mode 100644
index 0000000..5b99fc8
--- /dev/null
+++ b/progs/a673.py
@@ -0,0 +1,3 @@
+def string_to_tuple(str1):
+ result = tuple(x for x in str1 if not x.isspace())
+ return result \ No newline at end of file