我正在用巨蟒乌龟写程序。要在turtle窗口中编写文本,我使用以下代码: def write_text(center_x,center_y,text): # Write text on the Screen
board.speed(1)
print("I am here")
board.penup()
board.goto(center_x,center_y)
board.write(text) 但是这段代码并没有在turtle window中写任何东西。有谁可以帮我?
我正在学习巨蟒中的海龟图形,由于某种原因,屏幕上还有第二只海龟,我甚至还没有创建第二只海龟。我怎么才能摆脱第二只乌龟?
import turtle
s = turtle.getscreen()
t = turtle.Turtle()
for i in range(4):
t.fd(100)
t.rt(90)
turtle.exitonclick()
我一直试图让我的乌龟在我按下空格键(并在后面画)后永远停留在我的鼠标上,但每次它都会崩溃。我知道我的程序很烂,但是请帮帮忙。下面是我的编程:
import turtle as t
from turtle import *
if input("Would you like to play the game (1), or draw shapes (2)? ") == "2":
def k101():
mousepen = 1
screen = Screen()
所以我们必须用海龟来做线函数,但是我不知道怎么做,我只是不知道你怎么用乌龟画它。(我知道如何画线,但不知道怎么用乌龟画,我说过了)
以下是我们必须做的事情:
编写了一个程序draw_linfunc.py,它读取线性函数的k和d,并在-10到+10之间绘制线性函数的图形。编写一个单独的函数轴来绘制(坐标系的)轴。
下面是我用来做linfunc的代码:
x = float(input("Enter your x:\n>"))
d = float(input("Enter your d\n>"))
num_x = float(input("Ent
我在做“乌龟奔跑”游戏。这个游戏是海龟在追逐食物,从“红海龟”中逃脱。我几乎做了这个游戏,但我不能做一件事...that如果乌龟抓住食物,显示数字,乌龟抓住食物。如何在我的代码中添加一些东西? import turtle as t
import random
te=t.Turtle()
te.shape('turtle')
te.color('red')
te.speed(0)
te.up()
te.goto(0,200)
ts=t.Turtle()
ts.shape('circle')
ts.color('green')
t
我正在使用巨蟒乌龟为一个项目,我需要乌龟来绘制字符。但是,当我尝试为颜色使用RGB值时,我一直收到错误消息。输入为:
turtle.color((151,2,1))
接着是一系列的动作。但是,当我运行该程序时,我收到以下消息:
File "C:/Users/Larry/Desktop/tests.py", line 5, in center
turtle.color((151,2,1))
File "<string>", line 1, in color
File "C:\Python33\lib\turtle.py", line 2
我正在尝试将乌龟移动到我的光标上以绘制一些东西,以便每次我单击时,乌龟都会去那里并绘制一些东西。 我已经尝试了onscreenclick(),onclick,以及这两者的许多组合,我觉得我做错了什么,但我不知道是什么。 from turtle import*
import random
turtle = Turtle()
turtle.speed(0)
col = ["red","green","blue","orange","purple","pink","yellow"]
a
我有一个简单的乌龟赛车游戏。我正在尝试添加代码来声明/显示当一只乌龟到达终点线(x位置190)时,四只乌龟中哪一只赢得了比赛。但是我得到了错误。你能解释一下我如何修改这段代码才能正常工作吗? from turtle import *
from random import randint
tur1=Turtle()
tur1.color("red")
tur1.shape("turtle")
tur1.penup()
tur1.goto(-155,100)
tur1.pendown()
t
我试图用python中的乌龟绘制一个正弦波,但我遇到了一个问题,我使用了一个带有goto语句的while循环来绘制该波,但goto中的y值是恒定的(虽然它们确实会变化,但在goto中不是)为什么会这样?因为x运行得很好
import math
import turtle
wn = turtle.Screen()f
wn.bgcolor('lightblue')
fred = turtle.Turtle()
x = 0
while x < 360:
y = math.sin(math.radians(x))
print y
fred.goto