• 2022-06-27 问题

    下列程序段中,错误的是 A: import math;print(math.sin(3)) B: from math import *;print(sin(3)) C: import math as m;print(m.sin(3)) D: import math;print(sin(3))

    下列程序段中,错误的是 A: import math;print(math.sin(3)) B: from math import *;print(sin(3)) C: import math as m;print(m.sin(3)) D: import math;print(sin(3))

  • 2021-04-14 问题

    【多选题】下面哪些是正确的Python标准库对象导入语句? A. import math.sin as sin B. from math import sin C. import math.* D. from math import *

    【多选题】下面哪些是正确的Python标准库对象导入语句? A. import math.sin as sin B. from math import sin C. import math.* D. from math import *

  • 2021-04-14 问题

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

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

  • 2021-04-14 问题

    执行语句 from math import sin 之后,可以直接使用 sin() 函数,例如 sin(3)

    执行语句 from math import sin 之后,可以直接使用 sin() 函数,例如 sin(3)

  • 2022-05-30 问题

    71 判断对错:执行语句from<br/>math import sin之后,可以直接使用sin()函数,例如sin(3)。()

    71 判断对错:执行语句from<br/>math import sin之后,可以直接使用sin()函数,例如sin(3)。()

  • 2022-05-30 问题

    下列哪个选项是导入标准库math中所有对象的正确操作( )。 A: from math import * B: from math import sin C: from math import all D: from math import fun

    下列哪个选项是导入标准库math中所有对象的正确操作( )。 A: from math import * B: from math import sin C: from math import all D: from math import fun

  • 2022-05-30 问题

    下列哪个选项的操作可以从模板库中导入某一指定对象同时实现了别名设置。( ) A: from math import sin as f B: from math import sin C: import numpy as np D: from math import *

    下列哪个选项的操作可以从模板库中导入某一指定对象同时实现了别名设置。( ) A: from math import sin as f B: from math import sin C: import numpy as np D: from math import *

  • 2022-05-30 问题

    执行了import math之后即可执行语句print sin(pi/2)。 A: 正确 B: 错误

    执行了import math之后即可执行语句print sin(pi/2)。 A: 正确 B: 错误

  • 2022-07-24 问题

    下列API不属于java. lang. Math类的是( )。 A: random () B: abs() C: drawLine () D: sin()

    下列API不属于java. lang. Math类的是( )。 A: random () B: abs() C: drawLine () D: sin()

  • 2021-04-14 问题

    中国大学MOOC:"Python标准库math中sin()函数的参数单位是角度还是弧度?";

    中国大学MOOC:"Python标准库math中sin()函数的参数单位是角度还是弧度?";

  • 1 2 3 4 5 6 7 8 9 10