Author : Admin
Consider the following python program segment: d1 = “(1,2,3)” d2 = (1,2,3) d3 = [1,2, (1,2)]
What would be the types of variable d1, d2 and d3 respectively after the execution of the program segment ?
tuple, tuple ,tuple
string , tuple, tuple
char, tuple, list
string , tuple, list
tuple , tuple, list
You must be logged in to post a comment.
Only fill in if you are not human