下列能正确输出<"hello">信息的语句为()
A. print('<"hello">')
B. print(<'hello'>)
C. print(<"hello">)
D. print('''''')
已知a=3.1415926则下列输出的内容为()print("a的值为{:.3f}".format(a))
A. a的值为3.141
B. a的值为3.142
C. a的值为3.14
D. a的值为3.1415
请问下列语句运行结果为()eval(‘print(“hello”)’)
A. print(“hello”)
B. “hello”
C. hello
D. 报错
执行以下语句后,请问type(b)的结果是()a,b,c,d=20,5.5,True,4+3j
A. str
B. float
C. int
D. bool