如何在Python Turtle中增大圆圈的大小

时间:2019-12-03 22:37:14

标签: python turtle-graphics

我一直在做一个带有头部的游戏。我不知道如何扩大规模。这是代码:

head = turtle.Turtle()
head.speed(0)
head.color('white')
head.shape('circle')
head.size(12)
head.penup()

3 个答案:

答案 0 :(得分:0)

请参见turtle.shapesize()

import turtle

head = turtle.Turtle()
head.shape('circle')
head.shapesize(12)

turtle.done()

答案 1 :(得分:0)

您似乎使用了错误的函数,而不是使用turtle.size()尝试使用turtle.shapesize()

答案 2 :(得分:0)

请确保在第 5 行使用 turtle.shapesize(),如果您使用 turtle.size()