在python中,下列语句计算结果相同的一组是()。(1.0)
A. 2*3和13/2
B. 2**3和pow(2,3)
C. abs(-4)和-2**2
D. int(1.55)和round(1.55)
查看答案
Python中,下列表达式计算结果返回值是False是的()。(1.0)
A. all([1,2,3,"None"])
B. any(['',None,False,"false"])
C. "hello" is "hello World"
D. 1<3 and "hello"<"world"
{ 下列语句最终执行结果是: >>>a=3 >>>b=3 >>>a*=2 >>>b+=3 >>>a is b }(1.0)
A. True
B. False
None属于哪种数据类型:(1.0)
A. 字符串
B. 字节串
C. 布尔型
D. 空类型
在Python中,print(r"my \name:")输出结果是()。(1.0)
A. my \name:
B. my name:
C. my ame:
D. my name: