第 1 题 【单选题】
表达式 len(“学史明理增信 , 读史终生受益”) > len(" reading history will benefit you ") 的结果是? ( )
A :0
B :True
C :False
D :1
正确答案:C
试题解析:
第 2 题 【单选题】
在 turtle 画图中, 常常使用 turtle.color(color1,color2)指令进行画笔颜色和填充颜色的设置,下列关于该指令使用正确的是? ( )
A :turtle.color(“red”,”yellow”)表示画笔颜色为黄色, 背景颜色为红色。
B :turtle.color(“red”)表示画笔颜色为红色, 背景颜色随机。
C :turtle.color(color1,color2)指令中的参数 color2是可选项,可以只有一个颜色参数。
D :turtle.color(color1,color2)指令中若将 color1和color2 删掉, 即 turtle.color(),小海龟在向前走 100 像素时, 画布不会出现小海龟的轨迹。
正确答案:C
试题解析:
第 3 题 【单选题】
如图所示, 想要将一行输出的两句诗词, 变成二行输出方式, 应该如何写输出指令? ( )
A :print(“床前明月光, 疑是地上霜”)
B :print(“”“床前明月光 疑是地上霜”“”)
C :print(“床前明月光 疑是地上霜”)
D :print(“”“床前明月光 疑是地上霜”“”)
正确答案:D
试题解析:
第 4 题 【单选题】
表达式(2<1) ==False 的结果是? ( )
A :None
B :True
C :Error
D :False
正确答案:B
试题解析:
第 5 题 【单选题】
在 Python 中, type()函数用于查看对象的数据类型, 在 Python shell 中运行 type(‘6’*20), 运行结果为? ( )
A :<class ‘int’>
B :<class ‘str’>
C :<class ‘float’>
D :语法错误
正确答案:B
试题解析:
第 6 题 【单选题】
绘制一个半径为 5 的红色圆点, 下列选项不正确的是? ( )
A :
import turtle
turtle.color("red")
turtle.dot(10)
turtle.done()
B :
import turtle
turtle.color("red","red")
turtle.begin_fill()
turtle.circle(5)
turtle.end_fill