随笔分类 -  Python

摘要:Python、pycharm Shell编程:控制语句+功能指令 vi test.sh chmod u+x test.sh ./test.sh C语言:vi aa.c chmod u+x aa.c gcc aa.c ./a.out linux部分: 显示当前目录文件:ls -a显示所有 -l以列表形 阅读全文
posted @ 2021-02-24 11:08 geryhz 阅读(77) 评论(0) 推荐(0)
摘要:import turtlep = turtle.Turtle()p.speed(0)for i in range(300): p.forward(i*2) p.right(90+1)turtle.done() 阅读全文
posted @ 2021-02-10 10:56 geryhz 阅读(103) 评论(0) 推荐(0)