码迷,mamicode.com
首页 >  
搜索关键字:bgcolor    ( 376个结果
条件、循环、函数定义 练习
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
python 五星红旗
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
0908期 HTML 基础 第一讲
HTML 常用属性、标签以及表格 HTML 超文本标记语言的简称。 1.body的属性: bgcolor 页面背景色 background 背景壁纸、图片 text 文字颜色 topmargin 上边距 leftmargin 左边距 rightmargin 右边距 bottommargin 下边 b ...
分类:Web程序   时间:2017-09-10 23:47:57    阅读次数:300
2017/09/10
<!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
HTML学习笔记基础表格 第二节 (原创)
<!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
376条   上一页 1 ... 12 13 14 15 16 ... 38 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!