奇点星程
开始Python编程
夜空中的星星
作者:wl123
运行
清除
全屏运行
终端打印输出区
作品说明
暂无作品说明
点赞(0)
收藏 (0)
浏览量(549)
改编作品
我也要学编程
留 言
关于我们
奇点星程简介
用户协议
奇点星程官网
OJ平台
联系我们
微信:18065871965
邮箱:qidianxingcheng@163.com
建议反馈
软件下载
Scratch电脑版
Scratch安卓版
Python3.8
Dev-C++
管理平台
机构平台
校区平台
教师平台
©2017-2024. LLC. All RIGHTS RESERED.奇点星程
闽ICP备20003449号
闽公网安备35040302610058号
from turtle import * import random speed(0) colormode(255) pensize(20) for i in range(0,600,20): up() goto(-400,i-300) down() pencolor(60-int(i/10),60-int(i/10),60-int(i/10)) fd(800) #星星 for a in range(20): x=random.randint(-400,400) y=random.randint(0,300) up() goto(x,y) down() begin_fill() pensize(1) for j in range(4): color('yellow') fd(15) lt(30) fd(15) rt(120) end_fill()