单选题 input()函数从键盘接收到的数默认为:

A、 整数
B、 浮点数
C、 字符串
D、 数字
下载APP答题
由4l***5d提供 分享 举报 纠错

相关试题

单选题 以下哪个字符串表达式是正确的。

A、’this's a apple!'
B、"this's a apple!'''
C、"this's a apple!"
D、"this's a apple!'

单选题 'hello' * 3表达式的结果为:

A、"hello3"
B、'hello''hello''hello'
C、'3hello'
D、"hellohellohello"

单选题 要使用模块math,必须先导入该模块,正确的导入命令是:

A、>>>import from math
B、>>>import math from *
C、>>>from math import *
D、>>>from import math *

单选题 要显示模块math中的所有函数,使用的命令是:

A、import math
B、dir(math)
C、help(math)
D、list(math)

单选题 len('3' + '4' + 'scitc')的结果为:

A、’34scitc'
B、7
C、34scitc
D、'7scitc'

单选题 以下哪个函数用来显示完整的模块清单、有关函数的帮助信息

A、dir()
B、import
C、print()
D、help()

单选题 以下哪一个不是python语言的算术运算符

A、×
B、/
C、//
D、%

单选题 以下哪个字符串表达式是正确的。

A、this is python!'
B、"this is python!"
C、''this is python!'''
D、this is python!"