#389. 2023信息素养大赛Python挑战赛初赛-模拟卷3

2023信息素养大赛Python挑战赛初赛-模拟卷3

选择题

  1. 下列程序运行的结果是?( )
s = 'hello'
print(s+'world')

{{ select(1) }}

  • sworld
  • helloworld
  • hello
  • world

  1. 下列选项中不符合Python语言变量命名规则的是?( )

{{ select(2) }}

  • Computer
  • P
  • 3_1
  • _WO1

  1. 在Python中,运行9//2,输出的结果是?( )

{{ select(3) }}

  • 3
  • 4.5
  • 4
  • 4.0

  1. 下面哪一行代码的输出结果不是World2021?( )

{{ select(4) }}

  • print("World"+"2021")
  • print("World"+"20"+"21")
  • print("World"+2021)
  • print("World2021")

  1. 在Python中,输入3*4**2,运算结果是?( )

{{ select(5) }}

  • 144
  • 24
  • 48
  • 6

  1. 关于比较运算符说法正确的是?( )
    ①!=表示为不等于,如果两个操作数不相等,则为False
    ②<=表示为小于等于,如果左边的数小于或等于右边的数,则为True
    ③若a=2,b=5则a!=b为True

{{ select(6) }}

  • ①②
  • ②③
  • ①③
  • ①②③

  1. Python中的乘法是用哪个符号表示的?( )

{{ select(7) }}

  • *
  • X
  • x
  • #

  1. 以下哪个选项可以作为Python文件的后缀名?( )

{{ select(8) }}

  • .py
  • .png
  • .doc
  • .pdf

  1. 要给三个整型变量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

  1. 以下哪段程序能在画出三角形并隐藏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()
    

  1. turtle.home() 的作用是下列哪一种?( )

{{ select(11) }}

  • 移至初始坐标 (0,0)
  • 移至初始坐标 (0,0),并设置朝向为初始方向
  • 移至屏幕左上角
  • 设置朝向为初始方向

  1. 关于Turtle绘图,下列说法错误的是?( )

{{ select(12) }}

  • 色彩处理时,可以使用彩色画笔pencolor( ),也可以直接由color( )方法更改目前画笔的颜色
  • penup()指的是将笔提起,不会绘制任何图形
  • 在选择画笔粗细时可以使用pensize()
  • 在海龟绘图中,画布中央是(0,0),往右X坐标值递减,往左X坐标值递增

  1. 在Python中,输入18/6//3,输出结果为?( )

{{ select(13) }}

  • 1
  • 1.0
  • 9
  • 9.0

  1. print(88-8)的运行结果是?( )

{{ select(14) }}

  • 88
  • 80
  • 88-8
  • 81

  1. 分析下列程序,说法错误的是?( )
import turtle
turtle.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"

  1. Python环境中,以下代码注释正确的是?( )

{{ select(16) }}

  • #这个是一个程序
  • /这个是一个程序/
  • "这是一个程序'
  • ?这是一个程序?

  1. print(5%10+5)的输出结果是?( )

{{ select(17) }}

  • 10
  • 1/3
  • 5.2
  • 5

  1. 下列哪一个函数可以将海龟顺时针旋转?( )

{{ select(18) }}

  • left()
  • right()
  • back()
  • forward()

  1. 在Python编程环境下,IDLE代表什么?( )

{{ select(19) }}

  • 编辑器
  • 编译器
  • 计算器
  • 集成开发环境

  1. 如果某年的第1天也就是一月一日是星期一。星期一记作1,星期二记作2,以此类推,星期日记作0。要求这一年的第d天是星期几,下列哪一种方法可以实现?( )

{{ select(20) }}

  • d % 7
  • (d - 1) % 7
  • (d - 1) % 7 + 1
  • (d + 1) % 7

  1. 在初始状态下,执行以下命令后,turtle的坐标为?( )
turtle.forward(10)
turtle.left(90)
turtle.forward(20)

{{ select(21) }}

  • (10,0)
  • (10,20)
  • (10,30)
  • (10,-20)

  1. 下列运算符中,哪一个不是比较运算符?( )

{{ select(22) }}

  • <
  • >
  • !=
  • =

  1. 运行如下代码段,输出结果正确的是?( )
word1="o"
word2="n"
print(word2+word1)

{{ select(23) }}

  • on
  • no
  • word3
  • word2word1

  1. 下面哪一个不是Python的保留字?( )

{{ select(24) }}

  • class
  • if
  • turtle
  • or

  1. 下面哪个代码可以绘制一个直径为200的填充为红色,轮廓为蓝边的圆形?( )

{{ select(25) }}

  • import turtle
    turtle.pencolor('blue')
    turtle.fillcolor('red')
    turtle.begin_fill()
    turtle.circle(200)
    turtle.end_fill()
    
  • import turtle
    turtle.pencolor('blue')
    turtle.fillcolor('red')
    turtle.begin_fill()
    turtle.circle(100, 360)
    turtle.end_fill()
    
  • import turtle
    turtle.color('blue')
    turtle.dot(200)
    
  • import turtle
    turtle.pencolor('blue')
    turtle.fillcolor('red')
    turtle.dot(100)