Question: With following Python code, what will be the value of a? >>> tup=[3, 'test', 'sample'] >>> a, b, c = tup a) '3' b) Will
With following Python code, what will be the value of a?
>>> tup=[3, 'test', 'sample'] >>> a, b, c = tup
a) '3'
b) Will generate a "traceback" error
c) 3
d) [3, 'test', 'sample']
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
