首页 试题详情
单选题

下列程序的输出结果是:def foo():m = 1def bar():n = 2return m nm = bar()print(m)foo()

A3

B2

C1

D程序出错

正确答案:A (备注:此答案有误)

相似试题

  • 单选题

    下列程序输出结果是def foo:m = 1def bar(:n = 2return m nm = bar(print(mfoo

    答案解析

  • 单选题

    一个段代码定义如下,下列调用结果正确是? Adef bar(multiple):   def foo(n):   return multiple ** n  return foo

    答案解析

  • 单选题

    var myObject = {foo: bar,func: function() { var self = this;console.log(this.foo); console.log(self.foo);(function() {console.log(this.foo); console.log(self.foo); }()); }};myObject.func();程序输出是什么?

    答案解析

  • 单选题

    function Foo(){var i=0;return function(){document.write(i++); }}var f1=Foo(), f2=Foo();f1();f1();f2();请问以上程序输出是(

    答案解析

  • 单选题

    以下程序输出结果是:img1 = [12,34,56,78]img2 = [1,2,3,4,5]def displ(): print(img1)def modi(): img1 = img2modi()displ()

    答案解析

热门题库