码迷,mamicode.com
首页 >  
搜索关键字:turtle    ( 708个结果
Python汉诺塔问题
1 mport turtle 2 3 class Stack: 4 def __init__(self): 5 self.items = [] 6 def isEmpty(self): 7 return len(self.items) == 0 8 def push(self, item): 9 s ...
分类:编程语言   时间:2020-04-05 22:14:38    阅读次数:78
ROS运行
第一个吉祥物测试 小乌龟 第一个终端$roscore 第二个终端$rosrun turtlesim turtlesim_node 第三个终端$rosrun turtlesim turtle_teleop_key 第二个ROS-Academy-for-Beginners教学包 在src文件夹下 git ...
分类:其他好文   时间:2020-04-04 14:46:35    阅读次数:133
汉诺塔问题
import turtle class Stack: def __init__(self): self.items = [] def isEmpty(self): return len(self.items) == 0 def push(self, item): self.items.append( ...
分类:其他好文   时间:2020-03-31 14:10:56    阅读次数:49
Python汉诺塔问题
import turtle class Stack: def __init__(self): self.items = [] def isEmpty(self): return len(self.items) == 0 def push(self, item): self.items.append( ...
分类:编程语言   时间:2020-03-31 12:42:32    阅读次数:72
汉诺塔
import turtle class Stack: def __init__(self): self.items = [] def isEmpty(self): return len(self.items) == 0 def push(self, item): self.items.append( ...
分类:其他好文   时间:2020-03-31 10:23:45    阅读次数:120
python实现汉诺塔问题
import turtle class Stack: def __init__(self): self.items = [] def isEmpty(self): return len(self.items) == 0 def push(self, item): self.items.append( ...
分类:编程语言   时间:2020-03-30 21:46:18    阅读次数:79
第二周练习
1、画五角星 import turtle turtle.pensize(5) turtle.pencolor("yellow") turtle.fillcolor("red") turtle.begin_fill() for i in range(5): turtle.forward(200) tu ...
分类:其他好文   时间:2020-03-28 16:22:18    阅读次数:84
python3的turtle画模仿3d星空,运动的恒星小宇宙
本文参考原文 http://bjbsair.com/2020 03 25/tech info/6248/ 1.宇宙 2.代码实现条件 python3 3.第1步: 4.第2步: 5.第3步: 6.第4步: 7.第5步: 8.第6步: 9.效果图 本文参考原文 http://bjbsair.com/2 ...
分类:编程语言   时间:2020-03-26 09:26:30    阅读次数:95
python-turtle库,心得随心画~~
画画篮球场——→ 代码如下: 1 import turtle 2 turtle.pu() 3 turtle.left(90) 4 turtle.fd(250) 5 turtle.left(90) 6 turtle.fd(70) 7 turtle.left(20) 8 turtle.pd() 9 tu ...
分类:编程语言   时间:2020-03-24 23:20:25    阅读次数:142
太阳花绘制
import turtle import time # 同时设置pencolor=color1, fillcolor=color2 turtle.color("red", "yellow") turtle.begin_fill()#开始填充 for i in range(50): turtle.fo ...
分类:其他好文   时间:2020-03-22 20:02:09    阅读次数:75
708条   上一页 1 ... 5 6 7 8 9 ... 71 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!