单选题 以下选项中,不符合Python变量命名规则的是( )
A、keyword33_
B、33_keyword
C、_33keyword
D、keyword_33
单选题 表达式16/4-2**5*8/4%5/2的值为( )
单选题 关于Python语言的浮点数类型,以下选项中描述错误的是( )
A、浮点数类型表示带有小数的类型
B、Python语言要求所有浮点数必须带有小数部分
C、小数部分不可以为0
D、浮点数类型与数学中实数的概念一致
单选题 下列表达式中,值不是1的是( )
A、1 or True
B、1 and True
C、4//3
D、15%2
单选题 下面代码的输出结果是( )
>>>x = 12.34
>>>print(type(x))
A、<class 'int'>
B、<class 'float'>
C、<class 'bool'>
D、<class 'list'>
单选题 和not (x or y)语句等价的是( )
A、not x and not y
B、not x or not y
C、not x or y
D、not x and y
单选题 Python表达式中,可以控制运算优先顺序的是( )
A、圆括号()
B、尖括号<>
C、方括号[]
D、大括号{}