Python程序中语句的缩进规则,习惯用( )个空格。
查看答案
Python里用来告知解释器跳过当前循环中的剩余语句,然后继续进行下一轮循环,此关键词是__
A. continue
B. break
C. pass
D. for
在python中,数字类型不包括以下哪几种类型():
A. int
B. str
C. bool
D. complex
python3 中 若x = 3,执行x/=3的结题为
A. 1
B. 1.0
C. 0
D. 3
19、python3解释器执行 not 1 and 1的结果为( ):
A. True
B. False
C. true
D. false