码迷,mamicode.com
首页 >  
搜索关键字:turtle    ( 708个结果
任务16(turtle绘图)
import turtle turtle.setup(650, 350, 200, 200) turtle.penup() turtle.fd(-250) turtle.pendown() turtle.pensize(25) turtle.pencolor("purple") turtle.set ...
分类:其他好文   时间:2020-05-25 19:23:30    阅读次数:71
使用python绘制爱心
import turtle turtle.bgcolor("black") turtle.pensize(2) sizeh = 1.2 def curve(): for ii in range(200): turtle.right(1) turtle.forward(1 * sizeh) turtl ...
分类:编程语言   时间:2020-05-21 23:40:25    阅读次数:86
python3中安装turtle库
开始在网上找资料安装的时候踩了一点坑,来总结一下经验 直接安装 安装 pip install turtle 会提示错误:Command "python setup.py egg_info" failed with error code 1 解决方法 1.直接找到turtle 0.0.2(地址是这个) ...
分类:编程语言   时间:2020-05-18 17:02:47    阅读次数:557
使用Python的 turtle库绘制中国结
需求:用python绘制一个与中国传统节日有关的图像,如春节→中国结 1 import turtle as t 2 def goto(x,y): 3 t.penup() 4 t.goto(x,y) 5 t.pendown() 6 7 def init(): 8 t.setup(800,800) 9 ...
分类:编程语言   时间:2020-05-16 16:25:16    阅读次数:162
ros话题(topic)
ros话题(topic) 首先确保roscore已经运行, 打开一个新的终端:$ roscore 请在一个新的终端中运行:$ rosrun turtlesim turtlesim_node 通过键盘远程控制turtle 请在一个新的终端中运行:$ rosrun turtlesim turtle_te ...
分类:其他好文   时间:2020-05-05 18:08:07    阅读次数:74
Python3-2020-测试开发-2- Python3之turtle模块使用
一、语法解释 turtle.width(10)turtle.color("blue")turtle.circle(50)turtle.penup()turtle.goto(120,0)turtle.pendown()turtle.color("black")turtle.circle(50)turt ...
分类:编程语言   时间:2020-04-21 18:52:18    阅读次数:108
-老友记-
前言 每天看一集老友记,第一遍带字幕,第二遍不带字幕,然后把生词列出来,看看能不能提高语感吧。 S01E01 |时间|单词|释义| | | | | |14:27|on a roll|好像你是一路滚下来, 很顺, 没有被打断的感觉| |17:21|take credit for sb|拥有某人的人情| ...
分类:其他好文   时间:2020-04-14 23:03:02    阅读次数:129
叠加三角形
import turtle as t t.left(60) for i in range(3): t.fd(100) t.right(120) t.fd(50) t.right(60) for i in range(3): t.fd(50) t.right(120) t.done() ...
分类:其他好文   时间:2020-04-14 21:05:13    阅读次数:69
六角形
import turtle as t t.seth(30) t.fd(100) t.seth(-90) t.fd(100) t.seth(150) t.fd(100) t.seth(30) t.fd(100/3) t.seth(90) t.fd(100/3) t.seth(-30) t.fd(100 ...
分类:其他好文   时间:2020-04-14 20:15:43    阅读次数:76
python(12)---科赫特雪花
科赫特雪花属于分形几何中的一种,本程序利用递归的思想,进行绘制, 递归,难点在于寻找基例和递归链条。 1 #!/usr/bin/env python3 2 # -*- coding: utf-8 -*- 3 #koch.py 4 import turtle 5 def koch(size,n): 6 ...
分类:编程语言   时间:2020-04-11 09:29:37    阅读次数:92
708条   上一页 1 ... 4 5 6 7 8 ... 71 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!