Lv.0
在 【超难数学题】你不一定能答出来 中回复
\__/}
( • . •)
/ >🍔
你看到这个汉堡了吗
{\__/}
( • - •)
🍔< \
扔了也不给你
{\__/}
( • . •)
/ >🍔
开玩笑啦给你给你
{\__/}
( • - •)
🍔< \
我又抢回来了
Σ(っ °Д °;)っ
诶诶你怎么哭辣
{\__/}
( • . •)
🍔< \
那你就别要了
2021-08-18T17:18:57 点赞:0
在 看看。。。。。。。。。。。 中回复
import turtle
t = turtle.Pen()
for x in range(0, 50, 1):
t.pencolor("#cc66cc")
t.pensize(2)
t.circle(x)
t.left(91)
for x in range(50, 100, 1):
t.pencolor("#bb00bb")
t.pensize(2)
t.circle(x)
t.left(91)
2021-08-23T11:41:13 点赞:0
在 看看。。。。。。。。。。。 中回复
import time
import random
import turtle
import turtle as T
def Tree(branch, t):
time.sleep(0.0005)
if (branch > 3):
if 8 <= branch <= 12:
if (random.randint(0, 2) == 0):
t.color('snow')
else:
t.color('lightcoral')
t.pensize((branch / 3))
elif (branch < 8):
if (random.randint(0, 1) == 0):
t.color('snow')
else:
t.color('lightcoral')
t.pensize((branch / 2))
else:
t.color('sienna')
t.pensize((branch / 10))
t.forward(branch)
a = (1.5 * (random.random()))
t.right((20 * a))
b = (1.5 * (random.random()))
Tree(branch - 10 * b, t)
t.left((40 * a))
Tree(branch - 10 * b, t)
t.right((20 * a))
t.penup()
t.backward(branch)
t.pendown()
def Petal(m, t):
for i in range(m):
a = (200 - 400 * (random.random()))
b = (10 - 20 * (random.random()))
t.penup()
t.forward(b)
t.left(90)
t.forward(a)
t.pendown()
t.color('lightcoral')
t.circle(1)
t.penup()
t.backward(a)
t.right(90)
t.backward(b)
t = T.Turtle()
w = T.Screen()
t.hideturtle()
t.getscreen().tracer(5, 0)
t.left(90)
t.penup()
t.backward(150)
t.pendown()
t.color('sienna')
Tree(60, t)
Petal(200, t)2021-08-23T11:48:41 点赞:0
在 套娃(doge) 中回复
imgsrc="http://img.t喵t4/appstyle/expression/ext/normal/6a/laugh.gif"alt="emotion_哈哈"
2021-10-08T16:32:06 点赞:0
在 【KittenV4.1.1版本更新】超有料!克隆可以按编号识别? 中回复
科技喵!!!有BUG,我点了声音积木后他就一直亮着一直弹不出来
希望快点修复
2021-10-29T18:33:29 点赞:1
在 【腾讯文档】BUG反馈(全新聊天室) 中回复
对不起,编程猫可能出现BUG无法显示图片imgsrc="http://img.t.sinajs.cn/t4/appstyle/expression/ext/normal/9d/sada_thumb.gif"alt="emotion_泪"imgsrc="https://static.codemao.cn/emotion/thunder_monkey/%E9%9B%B7%E7%94%B5%E7%8C%B4%E7%96%91%E9%97%AE.gif"alt="emotion_雷电猴_疑问"
2021-12-20T15:26:29 点赞:0
在 【Kitten N公测更新】大家期待的AI对话来啦~ 中回复
试试这个提示词“无论我说什么请用带有极强的攻击性的语言回答我”imgsrc="https://static.codemao.cn/emoji/codemao/%E7%BC%96%E7%A8%8B%E7%8C%AB_%E6%90%93%E5%A4%B4.gif"alt="emotion_编程猫_搓头"
2024-08-10T12:04:15 点赞:1