下面哪个选项是计算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")