• 2021-04-14 问题

    中国大学MOOC: 下面这段程序的运行结果是:( )from turtle import * a=60turtle.forward(a)turtle.left(90)turtle.forward(a)turtle.left(90)turtle.forward(a)turtle.left(90)turtle.forward(a)turtle.left(90)

    中国大学MOOC: 下面这段程序的运行结果是:( )from turtle import * a=60turtle.forward(a)turtle.left(90)turtle.forward(a)turtle.left(90)turtle.forward(a)turtle.left(90)turtle.forward(a)turtle.left(90)

  • 2022-06-15 问题

    ( )是用来改变turtle画笔绘制方向。 A: forward() B: circle() C: seth() D: penup()

    ( )是用来改变turtle画笔绘制方向。 A: forward() B: circle() C: seth() D: penup()

  • 2022-06-16 问题

    绘制一个红色的五角星,下列程序哪个是正确的? A: from turtle import * fillcolor("red") begin_fill() while True: forward(300) right(144) if abs(pos()) < 1: break end_fill() B: from turtle import * fillcolor("red") begin_fill() while True: forward(200) right(155) if abs(pos()) < 1: break end_fill() C: ffrom turtle import * fillcolor("red") begin_fill() while True: forward(200) right(144) if pos() < 1: break end_fill() D: from turtle import * fillcolor("red") begin_fill() while True: forward(200) right(144) if abs(pos()) < 2: break end_fill()

    绘制一个红色的五角星,下列程序哪个是正确的? A: from turtle import * fillcolor("red") begin_fill() while True: forward(300) right(144) if abs(pos()) < 1: break end_fill() B: from turtle import * fillcolor("red") begin_fill() while True: forward(200) right(155) if abs(pos()) < 1: break end_fill() C: ffrom turtle import * fillcolor("red") begin_fill() while True: forward(200) right(144) if pos() < 1: break end_fill() D: from turtle import * fillcolor("red") begin_fill() while True: forward(200) right(144) if abs(pos()) < 2: break end_fill()

  • 2022-10-25 问题

    下面哪个 turtle 函数表示改变海龟的朝向 A: seth B: penup C: forward D: circle

    下面哪个 turtle 函数表示改变海龟的朝向 A: seth B: penup C: forward D: circle

  • 2022-06-07 问题

    以下选项中,控制turtle画笔向前移动的命令是( )。 A: forward() B: backward() C: right() D: left()

    以下选项中,控制turtle画笔向前移动的命令是( )。 A: forward() B: backward() C: right() D: left()

  • 2022-06-27 问题

    turtle库中可以让小海龟向前移动的函数是: A: left() B: forward() C: right() D: front()

    turtle库中可以让小海龟向前移动的函数是: A: left() B: forward() C: right() D: front()

  • 2022-06-27 问题

    turtle库中可以让小海龟向前移动的函数是: A: left() B: forward() C: right() D: front()

    turtle库中可以让小海龟向前移动的函数是: A: left() B: forward() C: right() D: front()

  • 2022-06-29 问题

    以下代码中,那个引用turtle库的代码仅能初始化turtle对象,却不能设置画布或绘制其它图形: A: from turtle import * B: import turtle C: import turtle as tt D: from turtle import Turtle()

    以下代码中,那个引用turtle库的代码仅能初始化turtle对象,却不能设置画布或绘制其它图形: A: from turtle import * B: import turtle C: import turtle as tt D: from turtle import Turtle()

  • 2022-10-26 问题

    在Python语言中,以下正确的选项是______ A: 利用import turtle引用turtle库后,可以直接使用turtle函数pencolor( ) B: 利用import turtle * 引用turtle库后,可以直接使用turtle函数pencolor( ) C: 利用from turtle import * 引用turtle库对象后,可以直接使用turtle函数pencolor( ) D: 利用from turtle import 引用turtle库对象后,可以直接使用turtle函数pencolor( )

    在Python语言中,以下正确的选项是______ A: 利用import turtle引用turtle库后,可以直接使用turtle函数pencolor( ) B: 利用import turtle * 引用turtle库后,可以直接使用turtle函数pencolor( ) C: 利用from turtle import * 引用turtle库对象后,可以直接使用turtle函数pencolor( ) D: 利用from turtle import 引用turtle库对象后,可以直接使用turtle函数pencolor( )

  • 2022-06-14 问题

    哪个选项不能正确引用turtle库中的setup()函数? A: import turtle B: import turtle as t C: from turtle import* D: import setup from turtle

    哪个选项不能正确引用turtle库中的setup()函数? A: import turtle B: import turtle as t C: from turtle import* D: import setup from turtle

  • 1 2 3 4 5 6 7 8 9 10