摘要:
之前申请了GitHub Education,解锁了Copilot,使用体验很好,这次发现了Termius,对比xshell等要好用不少,更为关键的是能很好地支持移动端,并且配置都是云同步的,不需要重复配置。(当然,这可能会带来隐私问题orz:flushed:) 下载和登录 Windows可以前往Mi 阅读全文
摘要:
利用分形绘制樱花树,代码来自网络。 from turtle import * from random import * from math import * def tree(n,l): pd()#下笔 #阴影效果 t = cos(radians(heading()+45))/8+0.25 penc 阅读全文
摘要:
初学python时,在海龟绘图看到一幅纪念碑谷的作品,顿时来了兴趣,于是自己画了画,模仿出了类似的效果。 turtle官方文档 import turtle as t def drawlight(x,y): t.penup() t.goto(x, y) t.pendown() t.fillcolor( 阅读全文