Computer Science
Carefully read the given code fragments and figure out the errors that the code may produce.
t2 = (4, 5, 6)
t3 = (6, 7)
print(t3 - t2)
Python Tuples
2 Likes
Answer
Output
TypeError: unsupported operand type(s) for -: 'tuple' and 'tuple'
Explanation
Arithmetic operations are not defined in tuples. Hence we can't remove items in a tuple.
Answered By
2 Likes
Related Questions
Carefully read the given code fragments and figure out the errors that the code may produce.
t1 = (3) t2 = (4, 5, 6) t3 = t1 + t2 print (t3)
Carefully read the given code fragments and figure out the errors that the code may produce.
t1 = (3,) t2 = (4, 5, 6) t3 = t1 + t2 print (t3)
Carefully read the given code fragments and figure out the errors that the code may produce.
t3 = (6, 7) t4 = t3 * 3 t5= t3 * (3) t6 = t3 * (3,) print(t4) print(t5) print(t6)
Carefully read the given code fragments and figure out the errors that the code may produce.
odd= 1,3,5 print(odd + [2, 4, 6])[4]