传送门: 设为首页 收藏本站
首页/信息技术/python/2024信息技术会考python考核知识点
2024信息技术会考python考核知识点
收藏
参考人数3386
人气7449

包含试题

30

考试总分

30

及格分

0

考试时长

不限时长

做题模式

考试
练习

考试说明

文档版领取/解疑答惑/问题反馈/加群互助/所有免费...... 微信:weixue2026
所需费用 免费考试 / 原价 ¥ 0.00 / 每位考生可考次数不限
考试说明
试卷组成
单选题 含 30 题 ( 共30分 )
考试时间
参加考试无限制,随到随考
  • 单选题
    在Python中输入以下程序:
    if int(input( ))%5==0:
       print("yes")
    if int(input( ))%5!=0:
       print("no")
    如果输入7,则输出( )。
  • 单选题
    运行如下程序代码:
    a=int(input( ) )
    b=int(input( ) )
    print(a+b)
    输入2和5输出结果为( )
  • 单选题
    在Python中输入以下程序:
    a=input( )
    b=input( )
    c=a+b
    print(c)
    如果输入10和20,则输出( )。
  • 单选题
    a=10
    b=5
    c=7
    if a>b and b>c:
        print("yes")
    else:
        print("no")
    运行的结果是?
  • 单选题
    python中, 用于表示不等于的关系运算符是(        )
  • 单选题
    python赋值运算符就用中, a+=7 换算成a=的形式,应是(       )
  • 单选题
    python数据数型转换中, 转换为整数的函数是(        )
  • 单选题
    python中, input() 获取到的数据类型是(          )
  • 单选题
    python中,  用于表示除法取商(取整数)的运算符是(        )
  • 单选题
    python中, 幂运算符(次方运算)是(          )
  • 单选题
    python中,   用来表示是否等于的关系运算符是(        )
  • 单选题
    python中, 将 a**=2 转化成a=的形式,就是(          )
  • 单选题
    python中, 将 a//=2 转化成a=的形式,就是(          )
  • 单选题
    python中, 将 a-=2 转化成a=的形式,就是(          )
  • 单选题
    python中, 将 a%=2 转化成a=的形式,就是(          )
  • 单选题
    python中,  转换为字符串类型的函数是(        )
  • 单选题
    python中,  转换为浮点数(带小数)类型的函数是(        )
  • 单选题
    a=input()
    a=a+1
    print(a)
    运行以上python程序, 并从键盘输入3 ,请判断运行的结果.
  • 单选题
    a=3
    b=6
    if  a<2  or b>3:
        print("yes")
    else:
        print("no")
    运行以上python程序, 结果会是(        )
  • 单选题
    a=234
    b=234//23+234%19
    if  b >8 or a < 456  :
        print("no")
    else:
        print("yes")
    运行以上python程序, 结果会是(        )

暂无任何记录

admin

网考网
返回顶部