基本信息
文件名称:Python基础语法及运算知识测试试卷.docx
文件大小:17.56 KB
总页数:15 页
更新时间:2025-05-30
总字数:约5.43千字
文档摘要
Python基础语法及运算知识测试试卷
1.下列程序运行的结果是?()s=helloprint(s+world)
A.sworld
B.helloworld(正确答案)
C.hello
D.world
2.下列选项中不符合Python语言变量命名规则的是?()
A.Computer
B.P
C.3_1(正确答案)
D._WO1
3.在Python中,运行9//2,输出的结果是?()
A.3
B.4.5
C.4(正确答案)
D.4.0
4.下面哪一行代码的输出结果不是World2021?()
A.print(World+2021)
B.