#2. 202305中国电子学会Python等级测试一级
202305中国电子学会Python等级测试一级
选择题
- 下列程序运行的结果是?( ) s = 'hello' print(s+'world')
{{ select(1) }}
- sworld
- helloworld
- hello
- world
- 下列选项中不符合Python语言变量命名规则的是?( )
{{ select(2) }}
- Computer
- P
- 3_1
- _WO1
- 在Python中,运行9//2,输出的结果是?( )
{{ select(3) }}
- 3
- 4.5
- 4
- 4.0
- 下面哪一行代码的输出结果不是World2021?( )
{{ select(4) }}
- print("World"+"2021")
- print("World"+"20"+"21")
- print("World"+2021)
- print("World2021")
- 在Python中,输入3*4**2,运算结果是?( )
{{ select(5) }}
- 144
- 24
- 48
- 6
- 关于比较运算符说法正确的是?( )①!=表示为不等于,如果两个操作数不相等,则为False②<=表示为小于等于,如果左边的数小于或等于右边的数,则为True③若a=2,b=5则a!=b为True
{{ select(6) }}
- ①②
- ②③
- ①③
- ①②③
- Python中的乘法是用哪个符号表示的?( )
{{ select(7) }}
*
- X
- x
#
- 以下哪个选项可以作为Python文件的后缀名?( )
{{ select(8) }}
- .py
- .png
- .doc
- 要给三个整型变量a、b、c赋值为5,下面Python程序正确的是?( )
{{ select(9) }}
- abc=5
- a=5,b=5,c=5
- a=b=c=5
- a=5 b=5 c=5
- 以下哪段程序能在画出三角形并隐藏turtle?( )
{{ select(10) }}
- import turtle turtle.circle(150,steps=3) turtle.hideturtle()turtle.done()
- import turtle turtle.circle(150,3) turtle.hideturtle() turtle.done()
- import turtle turtle.circle(3) turtle.hideturtle() turtle.done()
- import turtle turtle.circle(150,3,3) turtle.hideturtle()
- turtle.home() 的作用是下列哪一种?( )
{{ select(11) }}
- 移至初始坐标 (0,0)
- 移至初始坐标 (0,0),并设置朝向为初始方向
- 移至屏幕左上角
- 设置朝向为初始方向
- 设置朝向为初始方向
{{ select(12) }}
- 色彩处理时,可以使用彩色画笔pencolor( ),也可以直接由color( )方法更改目前画笔的颜色
- penup()指的是将笔提起,不会绘制任何图形
- 在选择画笔粗细时可以使用pensize()
- 在海龟绘图中,画布中央是(0,0),往右X坐标值递减,往左X坐标值递增
- 在Python中,输入18/6//3,输出结果为?( )
{{ select(13) }}
- 1
- 1.0
- 9
- 9.0
- print(88-8)的运行结果是?( )
{{ select(14) }}
- 88
- 80
- 88-8
- 81
- 分析下列程序,说法错误的是?( )import turtleturtle.color('blue')turtle.fillcolor('yellow')turtle.begin_fill()turtle.circle(50)turtle.end_fill()turtle.forward(100)turtle.color('red', 'aqua')turtle.begin_fill()turtle.circle(50)turtle.end_fill()
{{ select(15) }}
- turtle.color('blue')表示的含义为:设置轮廓和填充颜色均为"blue"
- turtle.fllcolor('yellow')表示的含义为:设置填充颜色为"yellow"
- 程序运行结果为:绘制两个圆,左边圆填充颜色为"yellow",右边圆的颜色为"aqua"
- 最终绘制两个圆的轮廓颜色均为"blue"
- Python环境中,以下代码注释正确的是?( )
{{ select(16) }}
- #这个是一个程序
- /这个是一个程序/
- "这是一个程序'
- ?这是一个程序?
- print(5%10+5)的输出结果是?( )
{{ select(17) }}
- 10
- 1/3
- 5.2
- 5
- 下列哪一个函数可以将海龟顺时针旋转?( )
{{ select(18) }}
- left()
- right()
- back()
- forward()
- 在Python编程环境下,IDLE代表什么?( )
{{ select(19) }}
- 编辑器
- 编译器
- 计算器
- 集成开发环境
- 如果某年的第1天也就是一月一日是星期一。星期一记作1,星期二记作2,以此类推,星期日记作0。要求这一年的第d天是星期几,下列哪一种方法可以实现?( )
{{ select(20) }}
- d % 7
- (d - 1) % 7
- (d - 1) % 7 + 1
- (d + 1) % 7
- 在初始状态下,执行以下命令后,turtle的坐标为?( )turtle.forward(10)turtle.left(90)turtle.forward(20)
{{ select(21) }}
- (10,0)
- (10,20)
- (10,30)
- (10,-20)
- 下列运算符中,哪一个不是比较运算符?( )
{{ select(22) }}
- !
- >
- =!
- =
- 运行如下代码段,输出结果正确的是?( )word1="o"word2="n"print(word2+word1)
{{ select(23) }}
- on
- no
- word3
- word2word1
- 下面哪一个不是Python的保留字?( )
{{ select(24) }}
- class
- if
- turtle
- or
- 下面哪个代码可以绘制一个直径为200的填充为红色,轮廓为蓝边的圆形?( )
{{ select(25) }}
- import turtleturtle.pencolor('blue')turtle.fillcolor('red')turtle.begin_fill()turtle.circle(200)turtle.end_fill()
- import turtleturtle.pencolor('blue')turtle.fillcolor('red')turtle.begin_fill()turtle.circle(100, 360)turtle.end_fill()
- import turtleturtle.color('blue')turtle.dot(200)
- import turtleturtle.pencolor('blue')turtle.fillcolor('red')turtle.dot(100)
判断题
- name = "John",这个赋值语句书写正确。
{{ select(26) }}
- 正确
- 错误
- 执行turtle.hideturtle()命令隐藏海龟之后,再怎么移动也就不能在画布上画图了。
{{ select(27) }}
- 正确
- 错误
- 65-2*2==126运行结果为True。
{{ select(28) }}
- 正确
- 错误
- 一个字符串可以转化为任意数值。
{{ select(29) }}
- 正确
- 错误
- 运行turtle.clear()命令,将清空turtle窗口中的内容,turtle的位置会重置到窗口中央。
{{ select(30) }}
- 正确
- 错误
- Python中,“==”代表的是将左右两边的值进行比较,取平均值。
{{ select(31) }}
- 正确
- 错误
- Word软件也可以用来编辑Python程序代码,也支持代码的调试和运行。
{{ select(32) }}
- 正确
- 错误
- 在Python编程环境中,>>>提示符表示进入Python交互式命令行编程模式。
{{ select(33) }}
- 正确
- 错误
- Python3中的单引号' '和双引号" "的作用是一样的。
{{ select(34) }}
- 正确
- 错误
- Python = "3.5.2"print(Python)运行时会提示出错。
{{ select(35) }}
- 正确
- 错误