猫史档案馆


【Python作品分享】星际【作品秀】

用户:Mitsui_yuMitsui_yu查看:0 回复:0 评论:0 创建时间:2021-01-15T20:02:20


【作品展示】

center_image

 

【作品介绍】

半成品

 

【作品源代码】

import turtle as t
import random
t.speed(1)
t.penup()
t.goto(-400,400)
t.pendown()
t.fillcolor('black')
t.begin_fill()
for i in range(4):
    t.forward(800)
    t.right(90)
    i+=1
t.end_fill()
t.pencolor('red')
for a in range(200):
    t.pendown()
    t.circle(-200, 1)
    t.penup()
'''t.fillcolor('cyan')
t.begin_fill()  # 开始填充
t.circle(-100, 180)  # 括号里填(半径,角度)正数向上转 负数向下转
t.end_fill()  # 结束填充'''
t.done()

 

【提示】

部分含有Python第三方库相关内容的作品,在海龟编辑器网页端无法运行哦!如遇到这种情况,可以打开下面的链接,下载海龟编辑器客户端:

https://python.codemao.cn


回复

上一页1 页 / 共 0下一页