题目内容

Python语句序列: def f(a,b): if b == 0: print(a,end=' ') else: f(b,a%b) print(f(9,6)) 的输出结果是______ 。

查看答案
更多问题

Python语句序列: counter=1;num=0 def test_variable(): global counter for i in (1,2,3): counter += 1 num = 10 test_variable();print(counter,num) 的输出结果是______ 。

Python语句序列:def f1(): "simple function" passprint(f1.__doc__)的输出结果是______ 。

Python语句序列: i=map(lambda x:x**2,(1,2,3)) for t in i: print(t,end=' ') 的输出结果是______ 。

Python语句序列: d=lambda p:p*2;t=lambda p:p*3 x=2;x=d(x);x=t(x);x=d(x);print(x) 的输出结果是______ 。

答案查题题库