码迷,mamicode.com
首页 >  
搜索关键字:vml fill    ( 3389个结果
python.五角星
import turtle turtle.pensize(4)turtle.pencolor("black") turtle.fillcolor("red")turtle.begin_fill() for _ in range(5): turtle.forward(150) turtle.right ...
分类:编程语言   时间:2020-03-14 22:06:21    阅读次数:70
叠三角形
import turtle turtle.setup(650,350,200,200)turtle.penup()turtle.pensize(1)turtle.pencolor("red")turtle.fillcolor("green")turtle.begin_fill()turtle.set ...
分类:其他好文   时间:2020-03-14 21:47:58    阅读次数:68
五角星绘制
1 from turtle import* 2 fd(-150) 3 color("black","red") 4 begin_fill() 5 for i in range(5): 6 fd(300) 7 right(144) 8 end_fill() 9 hideturtle() ...
分类:其他好文   时间:2020-03-14 20:15:10    阅读次数:57
Python123第二周
五、画太极图 描述 利用turtle库画以下太极图形状. 代码如下: #绘制太极图 from turtle import * setup(800,800,100,100) #绘制左半部分 fillcolor('#FFFFFF') begin_fill() circle(100,180) circle ...
分类:编程语言   时间:2020-03-14 17:06:48    阅读次数:120
8.五角星绘制
1 import turtle 2 import time 3 4 turtle.pensize(1) 5 turtle.pencolor("black") #画笔黑色 6 turtle.fillcolor("red") #内部填充红色 7 #绘制五角星# 8 turtle.begin_fill() ...
分类:其他好文   时间:2020-03-14 15:01:28    阅读次数:60
五角星
import turtle turtle.pensize(4) turtle.pencolor("yellow") turtle.fillcolor("red") turtle.begin_fill() for _ in range(5): turtle.forward(200) turtle.ri ...
分类:其他好文   时间:2020-03-14 12:44:36    阅读次数:74
python
1.五角星 import turtle turtle.fillcolor("red") turtle.begin_fill() count = 1 while count <= 5: turtle.forward(100) turtle.right(144) count += 1 turtle.en ...
分类:编程语言   时间:2020-03-14 10:52:48    阅读次数:53
五角星
import turtleimport time turtle.pensize(5)turtle.pencolor("red")turtle.fillcolor("red") turtle.begin_fill() for _ in range(5): turtle.forward(200) tur ...
分类:其他好文   时间:2020-03-14 00:46:18    阅读次数:48
六角形
import turtle L=50 N=6 jiaodu=180-360/(N) tl=turtle.Turtle() #tl.speed(0)tl.screen.delay(0) def f1(): tl.fillcolor("yellow") tl.begin_fill() for i in ...
分类:其他好文   时间:2020-03-14 00:45:44    阅读次数:89
android常用控件和布局
[toc] 新建一个UIWidgetDemo来测试Android中的控件和布局。 控件 TextView android中所有控件都有android:layout_width和android:layout_height这两个属性。这两个属性的可选值有3个:match_parent,fill_pare ...
分类:移动开发   时间:2020-03-13 21:02:08    阅读次数:68
3389条   上一页 1 ... 21 22 23 24 25 ... 339 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!