summaryrefslogtreecommitdiff
path: root/progs/a184.py
blob: 23c65684c8f9187462c4735221ba900ad5e285b1 (plain)
1
2
3
def tuple_str_int(test_str):
  res = tuple(int(num) for num in test_str.replace('(', '').replace(')', '').replace('...', '').split(', '))
  return (res)