五一集训第一场选择题
该比赛已结束,您无法在比赛模式下递交该题目。您可以点击“在题库中打开”以普通模式查看和递交本题。
一、选择题(共10题,每题10分)
1.执行下列代码,能输出的数字有( )。
from random import *
x = randint (0,3)
print(x)
{{ select(1) }}
- 0, 1, 2, 3
- 1, 2, 3, 4
- 1, 2. 3, 6
- 0, 1, 1.5, 2, 3
2.运行下列代码,程序的输出结果是( )。
x = 2
y = 3
if x > 2:
print("-月")
else:
if y > 2:
print("二月")
else:
print("三月")
{{ select(2) }}
- 一月
- 二月
- 三月
- 以上选项均错误
3.下列选项中,可以正确在横线处补全代码的是( )。
print("哪种水果视力最差?a.芒果b.西瓜c.榴莲")
ans = input("请输入你的回答:")
if ans == "a":
print("恭喜你答对啦")
______
print("很抱歉你答错了")
{{ select(3) }}
- if
- if:
- else
- else:
4.执行下列代码,变量number的值为( )。
number = 11
number = number + 1
{{ select(4) }}
- 1
- 11
- 12
- number
5.下列选项中,可以实现无限循环的是( )。
{{ select(5) }}
- while a < 1000:
- while True:
- for i in range(1000):
- for i in range(0,1000):
6.下列选项中,for循环使用正确的是( )。
{{ select(6) }}
- for i in range(100)
- for i in range(100):
- For i in range(100)
- For i in range(100):
7.下列说法正确的是( )。
{{ select(7) }}
- 用#注释代码,#写在代码前面或者代码后面都行
- 只能用#来进行注释
- 注释中的内容可以是中文也可以是字母和数字
- 以上说法都正确
8.下列选项中,符合python语言变量命名规则的是( )。
{{ select(8) }}
- USD*&……
- 8cny
- 1price
- USD_1
9.使用随机函数randint之前导入库的语句是( )。
{{ select(9) }}
- from turtle import *
- from random import *
- from randint import *
- from import random *
10.执行下列代码,程序输出的结果是( )。
money = 2
money = 10
money = 5
money = 8
print(money)
{{ select(10) }}
- 2
- 10
- 5
- 8