基本信息
文件名称:2024-2025学年第一学期编程python知识竞赛试卷含答案.docx
文件大小:21.01 KB
总页数:12 页
更新时间:2025-05-22
总字数:约4.12千字
文档摘要

2024-2025学年第一学期编程(python)知识竞赛试卷含答案

1、下列程序运行的结果是?()

s=hello

print(s+world)

*

A.sworld

B.helloworld(Correctanswer)

C.hello

D.world

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

A.Computer

B.P

C.3_1(Correctanswer)

D._WO1

3、在Python中,运行9//2,输出的结果是?()*

A.3

B.4.5

C.4(Correctanswer)

D.4.0

4、