- Write a function
list_tuple()
which accepts a sequence of comma-separated numbers in a string as parameter and generate a list or a tuple which contains every number.
list_tuple(34,67,55,33,12,98)
['34', '67', '55', '33', '12', '98']
or
('34', '67', '55', '33', '12', '98')
tuple()
method may be used to convert the list into a tuple