單項(xiàng)選擇題列表a=[1,2],b=[3,4],要合并列表成為[1,2,3,4]的正確操作是()

A.a.append(b)
B.a.extend(b)
C.a.insert(b)
D.b.append(a)


您可能感興趣的試卷

你可能感興趣的試題

1.單項(xiàng)選擇題列表a=[1,2,3,4],在執(zhí)行語(yǔ)句a[2]=0后,a的值是()。

A.[1,0,3,4]
B.[1;2,3,4]
C.[1,2,2,4]
D.[1,2,0,4]

2.單項(xiàng)選擇題列表a=[1,2,3,4],在執(zhí)行語(yǔ)句a.insert(1,0)后,a的值是()。

A.[0,1,2,3,4]
B.[1,1,2,3,4]
C.[1,0,2,3,4]
D.[1,2,3,4,0]

3.單項(xiàng)選擇題列表a=[1,2],在執(zhí)行語(yǔ)句a.append(0)后,a的值是()。

A.[1,2]
B.[1,2,0]
C.[2]
D.[0,1,2]

5.單項(xiàng)選擇題下列while循環(huán)語(yǔ)句寫法正確的是()。

A.while a< 10
B.while a< 10:
C.while a< 10;
D.while(a< 10)