码迷,mamicode.com
首页 >  
搜索关键字:turtle    ( 708个结果
Python基础综合练习
1 import turtle 2 from turtle import * 3 4 5 def mygoto1(x, y): 6 turtle.up() 7 turtle.goto(x, y) 8 turtle.down() 9 10 11 def star(r): 12 turtle.begin ...
分类:编程语言   时间:2018-03-19 13:36:24    阅读次数:190
Python基础综合练习
from turtle import * def goto1(x, y): up() goto(x, y) down() def draw(r): begin_fill() for i in range(5): forward(r) right(144) end_fill() setup(700, ...
分类:编程语言   时间:2018-03-19 13:27:34    阅读次数:201
五熊红旗
import turtle # def draw_square(org_x, org_y, x, y): turtle.setpos(org_x, org_y) # to left and bottom connor turtle.color('red', 'red') turtle.begin_f... ...
分类:其他好文   时间:2018-03-19 10:57:46    阅读次数:239
Python绘制五星红旗
运行结果: ...
分类:编程语言   时间:2018-03-19 10:57:08    阅读次数:608
Python基础综合练习
import turtle def mygoto(x, y): turtle.up() turtle.goto(x, y) turtle.down() def drawwu(x): turtle.begin_fill() for i in range(5): turtle.forward(x) tu... ...
分类:编程语言   时间:2018-03-19 10:25:15    阅读次数:221
大数据第三次作业
from turtle import * def drawstart(x, y, angle, length): up() setpos((x, y)) down() right(angle) begin_fill() for i in range(5): forward(length) right... ...
分类:其他好文   时间:2018-03-15 23:02:31    阅读次数:182
Python基础(红旗)
# -*- coding: UTF-8 -*- # -*- author: yjw -*- import turtle from turtle import * setup(800,600) color("yellow") fillcolor("yellow") bgcolor("red") def ...
分类:编程语言   时间:2018-03-15 22:19:08    阅读次数:235
python基础
from turtle import * def draw(r): begin_fill() for i in range(5): forward(r) right(144) end_fill() def mygoto(x, y): up() goto(x, y) down() setup(... ...
分类:编程语言   时间:2018-03-15 00:34:38    阅读次数:201
Python基础-画五星红旗
#coding=utf-8 # arrow(海龟箭头);turtle(实心箭头);circle(实心方形箭头);square(粗大箭头2);triangle(classic) from turtle import * def position(x,y): up() goto(x,y) down() ... ...
分类:编程语言   时间:2018-03-14 23:46:15    阅读次数:609
Python基础
Pycharm开发环境设置与熟悉。 练习基本输入输出: print('你好,{}.'.format(name)) uprint(sys.argv) 库的使用方法: import ... from ... import ... 条件语句: if (abs(pos()))<1: break 循环语句: ...
分类:编程语言   时间:2018-03-14 22:12:54    阅读次数:192
708条   上一页 1 ... 44 45 46 47 48 ... 71 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!