题目内容

Python语句序列: def judge(param1,*param2): print(type(param2),end=' ') print(param2) judge(1,2,3,4,5) 的输出结果是______ 。

查看答案
更多问题

Python语句序列:def func(): "Stay foolish,stay hungry" return 1print(func.__doc__[5:12])的输出结果是______ 。

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__)的输出结果是______ 。

答案查题题库