摘要: import turtle as t t.pencolor("blue") t.fd(200) t.seth(120) t.fd(200) t.seth(-120) t.fd(200) t.seth(0) t.fd(100) t.seth(60) t.fd(100) t.seth(180) t.fd 阅读全文
posted @ 2020-09-15 23:37 减辞 阅读(58) 评论(0) 推荐(0)
摘要: from turtle import * turtle.write("刘颖", move=False, align="left", font=("Arial", 20, "normal")) setup(700,700,200,200) pensize(20) pencolor("blue") pe 阅读全文
posted @ 2020-09-15 23:34 减辞 阅读(52) 评论(0) 推荐(0)
摘要: from turtle import * fillcolor("red") begin_fill() import turtle turtle.write("刘颖", move=False, align="left", font=("Arial", 20, "normal")) while True 阅读全文
posted @ 2020-09-15 23:20 减辞 阅读(83) 评论(0) 推荐(0)