题目内容

下面哪个选项正确使用了数字类型转换函数?

A. int("abc")
B. float(0XABC)
C. complex("10a")
D. float(5+2j)

查看答案
更多问题

下面哪个选项是计算30度角的正弦值?

A. math.log(30,math.e)
B. math.sin(30)
C. math.sin(math.pi/6)
D. math.fabs(30)

下面哪个选项输出"p"?

A. s="python"print(s[-6])
B. s="python"print(s[0:])
C. s="python"print(s[5])
D. s="1python"print(s[0])

下面哪个结果为字符串"hello world"?

A. "hello"+"world"
B. "hello\nworld"
C. "hello"+" "+"world"
D. "\thello\tworld\t"

下面哪个结果不是字符串?

A. str(100)
B. hex(35)
C. oct(67)
D. len("abc123")

答案查题题库