單項選擇題c=[1]deffore():c.append(2)fore()print(c)輸出結果是()

A.[1,2]
B.[1,2,3]
C.[1,2,3,4]
D.程序異常


您可能感興趣的試卷

你可能感興趣的試題

1.單項選擇題b=10def index():b=5index()print(b)輸出結果是()

A.10
B.5
C.0
D.程序異常

2.單項選擇題{’h’:’hello’}.pop(’h’)的值為()

A.h
B.e
C.hello
D.o

3.單項選擇題{1:2}.get(1)的返回值是()

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

4.單項選擇題{1:2}[1]的返回值是()

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

5.單項選擇題調用函數時所傳遞的參數,我們稱之為()

A.形參
B.實參
C.形參實參都有
D.不確定