In: Computer Science
Write a program which accepts a sequence of comma-separated numbers from console and generate a list and a tuple which contains every number. Suppose the following input is supplied to the program: 34, 67, 55, 33, 12, 98. Then, the output should be: ['34', '67', '55', '33', '12', '98'] and ('34',67', '55', '33', '12', '98'). Input can be comma separated in one line.
sequence = input("Enter Comma Separated numbers : ")
# removing spaces in sequence
sequence = sequence.replace(" ","")
# splitting comma separated values
sequence = sequence.split(",")
# converting sequence to list
n1 = list(sequence)
# converting sequence to tuple
n2 = tuple(sequence)
# printing list and tuple
print("List : ",n1)
print("Tuple : ",n2)
Code
Output