def str_to_tuple(test_str): res = tuple(map(int, test_str.split(', '))) return (res)