python颜色填充代码_如何在Turtle - Python中填充这些方块

我试图在这些方块中填充颜色:

http://i.imgur.com/kRGgR.png

现在,海龟只填充这些广场的角落,而不是整个广场。

这是我的代码:

import turtle

import time

import random

print ("This program draws shapes based on the number you enter in a uniform pattern.")

num_str = input("Enter the side number of the shape you want to draw: ")

if num_str.isdigit():

squares = int(num_str)

angle = 180 - 180*(squares-2)/squares

turtle.up

x = 0

y = 0

turtle.setpos(x,y)

numshapes = 8

for x in range(numshapes):

turtle.color(random.random(),random.random(), random.random())

x += 5

y += 5

turtle.forward(x)

turtle.left(y)

for i in range(squares):

turtle.begin_fill()

turtle.down()

turtle.forward(40)

turtle.left(angle)

turtle.forward(40)

print (turtle.pos())

turtle.up()

turtle.end_fill()

time.sleep(11)

turtle.bye()我试着在无数地方绕过turtle.begin_fill()和end_fill(),但没有运气。使用Python 3.2.3,谢谢。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值