List list(seq) Function

In Python list list(seq) function takes types of the sequence and converts them to lists. Simply used to convert tuple into list.

Syntax:
There is 1 Parameter used in Lists list(seq) Function: seq A tuple to be converted into the list.
Example:
#list() function

Tuple1 = ('BOB', 'TOM', 'JOHN');
List1 = list(Tuple1)
print ("Elements of the List  : ", List1)