Post

@PythonDvz Output:
print('v1={0}, v2={1}'.format(*values))
The format method replaces {0} with the first element of values ('P') and {1} with the second element of values (the list ['Y', 'T']). Thus, the output will be:
Output
v1=P, v2=['Y', 'T']
For More =>>

English

@PythonDvz The answer is
v1 = P, v2 = [Y, T].
The variable values is TUPLE.
English


