Lv.1
edu1013758044
在 【发帖格式测试】如何使用前端不允许的字体和颜色 中回复
这是一行普通本文。
这是一行加粗本文。
这是一行倾斜本文。
这是一行很大的本文。
这是一行有下划线的本文。
这是一行有删除线的本文。
2019-08-06T12:07:30 点赞:0
在 【Python作品分享】成绩-副本if 中回复
#开始进入Python的世界
成绩列表 = []
科目 = ['语文', '数学', '英语']
print('六年级期末成绩终于发了,快点告诉我你的成绩吧!')
for i in range(len(科目)):
成绩 = float(input((('你期末' + 科目[i]) + '多少分:')))
if (成绩 < 60):
print('没及格耶,要努力哟!')
elif (成绩 == 60):
print('差一点点就没及格了,一定要努力呀!')
elif (成绩 >= 60 and 成绩 < 90):
print('成绩良好,但还要加油哟!')
elif (成绩 >= 90 and 成绩 < 100):
print('成绩优秀,希望你考100分!')
elif (成绩 == 100):
print('真厉害,希望你继续保持!!!')
else:
print('乱输数字,真讨厌!')
成绩列表.append(成绩)
print('平均分', round(((成绩列表[0] + (成绩列表[1] + 成绩列表[2])) / 3), 1))
2019-08-08T14:47:11 点赞:0
在 【无厘头】亮出你们的复制吧~ 中回复
<iframe frameborder="no" border="0" marginwidth="0" marginheight="0" width=330 height=86 src="/喵outchain/player?type=2&id=4010187&auto=0&height=66"></iframe>
2019-08-10T11:53:16 点赞:0
在 [聊天]没QQ啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊 中回复
import turtle
import random
t = turtle.Pen()
t.speed(0)
color = ['red', 'blue', 'green', 'black', 'purple', 'yellow', 'orange', 'pink']
for a in range(random.randint(40, 100)):
t.penup()
t.goto(random.randint((-200), 200), random.randint((-200), 200))
the_color = random.choice(color)
t.pencolor(the_color)
t.fillcolor(the_color)
t.pendown()
size = random.randint(10, 70)
long_ = random.randint(5, 10)
t.begin_fill()
for l in range(size):
t.forward(l)
t.right(144)
t.end_fill()
turtle.done()
绘制多个五角星的代码。
2019-08-10T12:06:08 点赞:0
在 【kitten版本更新】快速测试作品效果,再也不用从头开始运行啦! 中回复
对了,难道不是……Scratch里的功能吗?
积木拼接
广播选择
移动更新
2019-09-12T18:04:37 点赞:0
在 【Kitten4.0有奖竞猜】编程猫大侦探,蛛丝马迹猜出新功能! 中回复
新功能一:主题
新功能二:交换屏幕
新功能三:复制屏幕
新功能四:坐标实时显示
新功能五:角色数据实时显示
新功能六:导入导出列表
新功能七:随机添加角色
新功能八:颜色主题
新功能九:轮廓可调整粗细、颜色
新功能十:可打开历史版本+保存时间
2019-12-13T18:28:54 点赞:0
在 KittenV4.0开始公测啦 中回复
有bug:
1、位图素材无法擦除。
2、像素画笔消失(以后作品就难制作了)
3、界面与Scratch3.0相似度达90%
2019-12-20T20:40:54 点赞:3