题目内容

Do you think __________ (should we, we should) invite the Browns?

查看答案
更多问题

I’d like to know how _________ (could I, I could) improve the design.

tup1 = ('Google', 'Runoob', 1997, 2000)print ("tup1[0]: ", tup1[0])

tup2 = (1, 2, 3, 4, 5, 6, 7 )print ("tup2[1:5]: ", tup2[1:5])

tup1 = (12, 34.56)tup2 = ('abc', 'xyz')tup1[0] = 100 tup3 = tup1 + tup2print (tup3)

答案查题题库