Computer Science, asked by rohitsingh1818, 21 hours ago

write a program in Python to create a tuple convert into the list and sort the list​

Answers

Answered by shifalimuneer
0

Answer

Input : [1, 2, 3, 4]

Output : (1, 2, 3, 4)

Input : ['a', 'b', 'c']

Output : ('a', 'b', 'c')

Explanation:

Please rate my answer!

Similar questions