Answers for "List to tuple"

1

List to tuple

sample_list = ['Compile', 'With', 'Favtutor']

#convert list into tuple
tuple1 = tuple(sample_list)

print(tuple1)
print(type(tuple1))
Posted by: Guest on October-04-2021
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
4

python tuple convert to list

x = list(x)
Posted by: Guest on April-04-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
0

List to tuple

sample_list = ['Compile', 'With', 'Favtutor']

#unpack list items and form tuple
tuple1 = (*sample_list,)

print(tuple1)
print(type(tuple1))
Posted by: Guest on October-04-2021

Python Answers by Framework

Browse Popular Code Answers by Language