首页题库练习题目详情
Python程序设计单选题中等

如果我们想用简短的名称来引用模块,例如用m代替math,应该如何操作?

Aimport math as m
Bfrom math import m
Cimport m as math
Dimport m