單項(xiàng)選擇題dict(zip((1,2),(3,4)))的返回值是()。

A.字符串
B.元組
C.列表
D.字典


您可能感興趣的試卷

你可能感興趣的試題

1.單項(xiàng)選擇題[1,2,3].pop()值是()

A.1
B.2
C.3
D.0

2.單項(xiàng)選擇題s=’hello world’,s[7:]的值是()

A.hell
B.hello
C.world
D.orld

3.單項(xiàng)選擇題[1,2,3].insert(0,4)的列表為值為()

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

4.單項(xiàng)選擇題[1,2,3].append(4)的返回值是()

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

5.單項(xiàng)選擇題[1,2,3][2]的返回值是()

A.1
B.2
C.3
D.1,2,3