使用当前浏览器访问考试宝,无法享受最佳体验,推荐使用 Chrome 浏览器进行访问。
更新时间: 试题数量: 购买人数: 提供作者:
有效期: 个月
章节介绍: 共有个章节
我的错题 (0道)
我的收藏 (0道)
我的斩题 (0道)
我的笔记 (0道)
顺序练习 0 / 0
随机练习 自定义设置练习量
题型乱序 按导入顺序练习
模拟考试 仿真模拟
题型练习 按题型分类练习
易错题 精选高频易错题
学习资料 考试学习相关信息
if X>10:
print("大于十")
else:
print("不大于十")
if X>Y:
print("X大")
print("Y大")
total =0
for i in range(1,101):
total +=i
print(total)
product =1
for i in range(1,11):
product *=i
print(product)
import turtle
t=turtle.Turtle()
t.color("red")
for i in range(4):
t.begin_fill()
t.circle(50)
t.right(90)
t.end_fill()
turtle.done()
2 t.color("red")
3 t.hideturtle()
4 t.begin_fill()
5 t.circle(200,60)
6 t.left(120)
7 t.circle(200,60)
8 t.end_fill()
9 t.done()
程序开始时,海龟默认的方向是0°方向,即面向右方。()
执行完第5行程序后,海龟朝向60°方向。()
执行完第6行程序后,海龟朝向120°方向。( )
执行完第7行程序后,海龟回到起点,且朝向也回到初始状态。( )
(5)程序运行的结果如下图所示。 ( )
(含图)