Computer Science
Find the output generated by following code fragments :
t2 = (4, 5, 6)
t3 = (6, 7)
t4 = t3 + t2
t5 = t2 + t3
print(t4)
print(t5)
Related Questions
Find the output generated by following code fragments :
T5 = (17,) type(T5)
Find the output generated by following code fragments :
tuple = ( 'a' , 'b', 'c' , 'd' , 'e') tuple = ( 'A', ) + tuple[1: ] print(tuple)
Find the output generated by following code fragments :
t3 = (6, 7) t4 = t3 * 3 t5 = t3 * (3) print(t4) print(t5)
Find the output generated by following code fragments :
t1 = (3,4) t2 = ('3' , '4') print(t1 + t2 )