试题详情

如果只需要math模块中的sin()函数,建议使用from math import sin来导入,而不要使用import math导入整个模块。

A正确

B错误