diff options
Diffstat (limited to 'progs/a184.py')
-rw-r--r-- | progs/a184.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/progs/a184.py b/progs/a184.py new file mode 100644 index 0000000..23c6568 --- /dev/null +++ b/progs/a184.py @@ -0,0 +1,3 @@ +def tuple_str_int(test_str):
+ res = tuple(int(num) for num in test_str.replace('(', '').replace(')', '').replace('...', '').split(', '))
+ return (res)
\ No newline at end of file |