下面代码的输出结果是( )。 def fun(x): retum x*.2+6 fun(8)

admin2020-04-10  20

问题 下面代码的输出结果是(    )。
  def fun(x):
    retum x*.2+6
  fun(8)

选项 A、14
B、16
C、无输出
D、70

答案C

解析 向函数传入实参8,函数的作用是返回x**2+6的结果,该函数是没有输出的,要想将返回值输出,需要调用print()函数输出结果。
转载请注明原文地址:https://kaotiyun.com/show/PM6p777K
0

最新回复(0)