建立模块a.py,模块内容如下。def B(): print('BBB')def A(): print('AAA')为了调用模块中的A()函数,应先使用语句______ 。
举一反三
- 导入模块的命令是() A: import B: def C: st D: print
- 下列Python代码,函数的定义和调用书写正确的是() A: def test(a| b): print(a) print(b) test(1| 2) B: def test(a): print(a) print(b) test(1, 2) C: def test(a, b): print(a) print(b) test(1) D: def test(a, b): print(a) print(b) test(1, 2)
- 设有函数定义: def fun(a = 0): print(a * 100) 则以下错误的函数调用语句是________。
- 函数如下: def showNnumber(numbers): for n in numbers: print(n) 下面那些在调用函数时会报错
- 智慧职教: 有以下代码: def f1(): print("函数f1正在执行") def f2(): print("函数f2正在执行")调用f1()结果为: