首页题目详情

在Python中,如何正确地从math包中导入sqrt模块?

题目配图
A.import math.sqrt
B.from math import sqrt
C.import math
D.from math import *sqrt

优质解答

答案

B

解析

正确的方式是从math模块中导入sqrt函数。使用'from math import sqrt'语句可以单独导入sqrt函数,而'import math'则需要使用math.sqrt()来调用。

查看答案和解析

支付 ¥0.1 即可查看此题答案和详细解析

低至 ¥0.1 起

Python程序设计单选题中等AI生成