码迷,mamicode.com
首页 > 其他好文 > 详细

绘制同心圆

时间:2020-03-17 21:07:59      阅读:68      评论:0      收藏:0      [点我收藏+]

标签:com   绘制   code   mic   war   键盘   down   spl   imp   

从键盘输入半径、绘制同心圆的个数及画笔的颜色

技术图片
 1 import turtle
 2 
 3 turtle.pensize(10)
 4 
 5 r=eval(input())
 6 n=eval(input())
 7 color=input()
 8 turtle.pencolor(color)
 9 
10 for i in range(n):
11     turtle.circle(r+(i-1)*20,360)#每个同心圆的半径差为20
12     turtle.penup()
13     turtle.right(90)
14     turtle.forward(20)
15     turtle.left(90)
16     turtle.pendown()
绘制同心圆

键盘输入:

                    20

                    4

                    red

技术图片

 

绘制同心圆

标签:com   绘制   code   mic   war   键盘   down   spl   imp   

原文地址:https://www.cnblogs.com/xugama/p/12513307.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!