1.24下面程序段的输出为()
a=1
def fun(a):
a=a+2
print(a)
fun(a)
print(a)

A.31
B.41
C.11
D.31
出自:河北工程大学Python语言程序设计