Computer Science
Related Questions
Find the output generated by following code fragments :
t2 = ('a') type(t2)
Find the output generated by following code fragments :
t3 = ('a',) type(t3)
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)