定义函数时如果函数体中没有return语句带回返回值,则该函数的返回值为( )
A. None
B. int
C. string
D. function
以下python代码运行的结果是()f=lambda x,y:x*yprint(f(2,6))
A. 2
B. 6
C. 12
D. 64
以下python代码运行的结果是()def setstr( ):s="hi"s+=" world"return sprint(setstr( ))
A. hi world
B. None
C. hi
D. world
以下python代码运行的结果是()def setstr( ):s="hi"s+=" world"print(setstr( ))
A. hi world
B. None
C. hi
D. world