write a program in Python to create a tuple convert into the list and sort the list
Answers
Answered by
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