python学习日记
Posted ywqqwq
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python学习日记相关的知识,希望对你有一定的参考价值。
python差不多是自学了 各种杂七杂八的
1.turtle部分
import turtle as t
一些基础的设置:
def set(): t.colormode(255) #颜色 t.pensize(5) t.speed(0) #t.shape(‘turtle‘) t.hideturtle() t.penup()
如何画一个心(可以把speed设置一下 现在速度不统一)
def heart(): t.pencolor(250,128,114) t.fillcolor(255,192,203) t.goto(-180,120) t.begin_fill() t.left(60) t.pendown() for i in range(200): t.forward(1) t.right(1) t.forward(114) t.penup() t.goto(-180,120) t.setheading(120) t.pendown() for i in range(200): t.forward(1) t.left(1) t.forward(114) t.end_fill() t.penup()
画完之后不立刻关掉框:t.done()
其他图案再慢慢补充
2.
以上是关于python学习日记的主要内容,如果未能解决你的问题,请参考以下文章