Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python tuple to list

my_tuple = (1, 2, 3)
print( list(my_tuple) ) 	# [1, 2, 3]
 
PREVIOUS NEXT
Tagged: #python #tuple #list
ADD COMMENT
Topic
Name
4+6 =