1.画五角星 >>> import turtle>>> turtle.bgcolor('pink')>>> turtle.color('yellow')>>> turtle.fillcolor('yellow')>>> turtle.up()>>> turtle.goto(0,-20) >>> tu ...
分类:
其他好文 时间:
2017-09-12 15:58:09
阅读次数:
135
1、画五角星 import turtleturtle.bgcolor('red')turtle.color('yellow')turtle.fillcolor('yellow')turtle.begin_fill() for i in range(5): turtle.forward(100) tu ...
分类:
其他好文 时间:
2017-09-12 15:48:25
阅读次数:
146
注意标准库的两种导入与使用方式,建议大家采用<库名>.<函数名>的方式。 对前面的代码进行优化,用for,while,if,def实现: 1.画五角星 import turtleturtle.shape('turtle')turtle.color('yellow')turtle.bgcolor('r ...
分类:
其他好文 时间:
2017-09-12 13:54:38
阅读次数:
139
1、画五角星 import turtleturtle.color('yellow')turtle.bgcolor('red')turtle.begin_fill()for i in range(5):turtle.forward(100)turtle.right(144)turtle.end_fil ...
分类:
其他好文 时间:
2017-09-12 10:41:14
阅读次数:
120
1.画五角星 import turtleturtle.setup(600,400,0,0)turtle.color('yellow')turtle.bgcolor('red')turtle.fillcolor('yellow') def mygoto(x,y): turtle.up() turtle ...
分类:
其他好文 时间:
2017-09-12 10:40:50
阅读次数:
139
import turtle turtle.pensize(2) turtle.setup(600,400,0,0) turtle.color("yellow") turtle.bgcolor('red') turtle.fillcolor("yellow") turtle.up() turtle.g... ...
分类:
其他好文 时间:
2017-09-11 19:44:11
阅读次数:
165
import turtle turtle.bgcolor("red") turtle.fillcolor("yellow") turtle.color('yellow') turtle.speed(10) turtle.begin_fill() turtle.up() turtle.goto(-60... ...
分类:
编程语言 时间:
2017-09-11 19:36:47
阅读次数:
192
HTML 常用属性、标签以及表格 HTML 超文本标记语言的简称。 1.body的属性: bgcolor 页面背景色 background 背景壁纸、图片 text 文字颜色 topmargin 上边距 leftmargin 左边距 rightmargin 右边距 bottommargin 下边 b ...
分类:
Web程序 时间:
2017-09-10 23:47:57
阅读次数:
300
<!doctype heml> <html> <head> <title>唐诗三百首</title> </head> <body bgcolor="yellow"> <h1 align="center">唐诗三百首</h1> <h2 align="center">静夜思</h2> <p><cente ...
分类:
其他好文 时间:
2017-09-10 22:48:28
阅读次数:
183
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>表格</title></head><body><table border="1" cellpadding="10" cellspacing="10" bgcolor ...
分类:
Web程序 时间:
2017-09-10 01:05:03
阅读次数:
198