Answers for "convert a list to tuple"

3

converting a tuple to a list in python

#!/usr/bin/python

aTuple = (123, 'xyz', 'zara', 'abc');
aList = list(aTuple)
print "List elements : ", aList
Posted by: Guest on October-26-2020
1

list of tuple to tuple of list python

>>> source_list = [('1','a'),('2','b'),('3','c'),('4','d')]
>>> list1, list2 = zip(*source_list)
>>> list1
('1', '2', '3', '4')
>>> list2
('a', 'b', 'c', 'd')
Posted by: Guest on June-01-2021
0

convert a list to tuple

tuple_name=tuple(list_name)
Posted by: Guest on August-09-2020

Python Answers by Framework

Browse Popular Code Answers by Language