试题详情

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

A3

B2

C1

D程序出错