码迷,mamicode.com
首页 >  
搜索关键字:turtle    ( 708个结果
条件、循环、函数定义 练习
太阳花:import turtle turtle.bgcolor('red','green') while True: turtle.forward(200) turtle.left(170) if(abs(turtle.pos()))<1: break 五个五角星import turtle tur... ...
分类:其他好文   时间:2017-09-14 10:40:21    阅读次数:136
条件、循环、函数定义 练习
a.五角星 import turtleturtle.color('yellow')turtle.begin_fill()for i in range(5): turtle.forward(100) turtle.right(144)turtle.end_fill() b.同心圆 import tur ...
分类:其他好文   时间:2017-09-13 23:25:17    阅读次数:252
条件、循环、函数定义 练习
1.画五角星 2.画同心圆 3.画太阳花 4.画五个五角星 画钻石花瓣的太阳花 输入学号,识别年级、专业、序号 输入1-7的数字,输出对应的“星期几”。 识别身份证号中的省市区、年龄、性别。 识别身份证号中的省市区、年龄、性别。 ...
分类:其他好文   时间:2017-09-13 23:15:11    阅读次数:235
条件、循环、函数定义、字符串操作
2-a.用循环画五角星 2-b用循环画同心圆 2-c.用while循环画太阳花 2-d.用函数定义画五个五角星 import turtleturtle.bgcolor('red')turtle.color('yellow')turtle.fillcolor('yellow') def guo_got ...
分类:其他好文   时间:2017-09-13 22:07:18    阅读次数:186
条件、循环、函数定义 练习
5. 画◇花瓣的太阳花 ...
分类:其他好文   时间:2017-09-13 21:19:39    阅读次数:145
条件、循环、函数定义练习
注意标准库的两种导入与使用方式,建议大家采用.的方式。 对前面的代码进行优化,用for,while,if,def实现: 画五角星 import turtle turtle.fillcolor("pink") turtle.begin_fill() for i in range(5): turtle.... ...
分类:其他好文   时间:2017-09-13 21:15:27    阅读次数:172
条件、循环、函数定义 练习
1.注意标准库的两种导入与使用方式,建议大家采用<库名>.<函数名>的方式。 2.对前面的代码进行优化,用for,while,if,def实现: a.画五角星 import turtle turtle.speed (10) turtle.setup(600,400,0,0) turtle.color ...
分类:其他好文   时间:2017-09-13 21:14:30    阅读次数:153
条件、循环、函数定义 练习
import turtlefrom turtle import *turtle.color('red','yellow')turtle.begin_fill()while True: turtle.speed(10) turtle.forward(200) turtle.left(170) if ( ...
分类:其他好文   时间:2017-09-13 20:19:10    阅读次数:171
条件、循环、函数定义 练习
import turtle #五角星 turtle.color('yellow') turtle.begin_fill() for i in range(5): turtle.forward(100) turtle.right(144) turtle.end_fill() import turtle... ...
分类:其他好文   时间:2017-09-13 19:25:04    阅读次数:163
条件、循环、函数定义 练习
2. 对前面的代码进行优化,用for,while,if,def实现: a.画五角星 b.画同心圆 c.画太阳花 d.画五个五角星 e.画◇花瓣的太阳花。 import turtle turtle.fillcolor('yellow') turtle.pencolor('red') turtle.be ...
分类:其他好文   时间:2017-09-13 19:21:03    阅读次数:133
708条   上一页 1 ... 51 52 53 54 55 ... 71 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!