首页题库练习题目详情
计算机软件基础单选题中等

如果模块A中定义了一个函数funA,模块B中定义了一个函数funB,并且模块B需要使用模块A中的funA,应该如何导入?

Aimport A
Bimport B
Cimport A.funA
Dfrom A import funA