gpt4 book ai didi

python - 如何在python中使用turtle创建具有特定颜色的圆形和三角形?

转载 作者:行者123 更新时间:2023-12-01 02:06:31 25 4
gpt4 key购买 nike

import turtle
import math
import random
import os`

player = turtle.Turtle()
player.color("yellow")
player.shape("triangle")
player.penup()
player.speed(0)`

maxGoals = 10
goals = []

for count in range(maxGoals):
goals.append(turtle.Turtle())
goals[count].color("red")
goals[count].shape("circle")
goals[count].penup()
goals[count].speed(0)
goals[count].setposition(random.randint(-290,290),random.randint(-290,290))`

运行此代码时,我仅获得红色圆圈的轮廓黄色三角形的轮廓

我需要填充红色的圆圈填充蓝色的三角形。我已经添加了下面的图片:

Here the circle's outline is in red colour and triangle's outline is in Yellow color

请帮我解决这个问题

最佳答案

我运行了您提供的代码,它运行得很好。请在不同的计算机上尝试相同的代码并提供详细信息,以便如果这是系统特定的问题,如果您提供更多信息,我将能够帮助您。

我使用 Mac、Python 2.7 运行它 python program output

慢跑者

关于python - 如何在python中使用turtle创建具有特定颜色的圆形和三角形?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49002427/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com