Q. What will be the output of the following Python function?
Code:
my_tuple = (1, 2, 3, 4) my_tuple.append( (5, 6, 7) ) print len(my_tuple)
β
Correct Answer: (C)
Error
my_tuple = (1, 2, 3, 4) my_tuple.append( (5, 6, 7) ) print len(my_tuple)
You must be Logged in to update hint/solution