Lv.1
喜报 大号封了
在 【民间活动】天下倒数第一·武道会故事接龙3(接个屁,简介发帖一向没有人气) 中回复
【第六章】
小川在雷垫喉的帮助下,在天堂找回了灵魂,复活了,但是他成了这样:
2018-08-30T19:46:56 点赞:0
在 【报道】萌新报道! 中回复
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------挖坟-----------------------------------------------------------------------------------------------
2018-08-30T19:51:10 点赞:0
在 【民间活动】天下倒数第一·武道会故事接龙3(接个屁,简介发帖一向没有人气) 中回复
【第一章】
秦小川被刺客喵了
秦小川的灵魂来到了源码世界
在这里,有无限的可能
突然,在源码世界的邻居的邻居(邻居是现实世界)——灵界中,莫日灵、伊替和灵的战斗一触即发
许多灵都来到源码世界避难
源码世界日益昌盛,但,人鱼混杂总有些不发分子,正在,破坏,整个源码世界……
2018-08-31T12:38:11 点赞:0
在 【python】如何画出小猪佩奇 中回复
#!/usr/bin/env python2
# coding=utf-8
import turtle as t
t.pensize(4)
t.hideturtle()
t.color((255,155,192),"pink")
t.speed(10)
#鼻子
t.pu()
t.goto(-100,100)
t.pd()
t.seth(-30)
t.begin_fill()
a=0.4
for i in range(120):
if 0<=i<30 or 60<=i<90:
a=a+0.08
t.lt(3) #向左转3度
t.fd(a) #向前走a的步长
else:
a=a-0.08
t.lt(3)
t.fd(a)
t.end_fill()
t.pu()
t.seth(90)
t.fd(25)
t.seth(0)
t.fd(10)
t.pd()
t.pencolor(255,155,192)
t.seth(10)
t.begin_fill()
t.circle(5)
t.color(160,82,45)
t.end_fill()
t.pu()
t.seth(0)
t.fd(20)
t.pd()
t.pencolor(255,155,192)
t.seth(10)
t.begin_fill()
t.circle(5)
t.color(160,82,45)
t.end_fill()
#头
t.color((255,155,192),"pink")
t.pu()
t.seth(90)
t.fd(41)
t.seth(0)
t.fd(0)
t.pd()
t.begin_fill()
t.seth(180)
t.circle(300,-30)
t.circle(100,-60)
t.circle(80,-100)
t.circle(150,-20)
t.circle(60,-95)
t.seth(161)
t.circle(-300,15)
t.pu()
t.goto(-100,100)
t.pd()
t.seth(-30)
a=0.4
for i in range(60):
if 0<=i<30 or 60<=i<90:
a=a+0.08
t.lt(3) #向左转3度
t.fd(a) #向前走a的步长
else:
a=a-0.08
t.lt(3)
t.fd(a)
t.end_fill()
#耳朵
t.color((255,155,192),"pink")
t.pu()
t.seth(90)
t.fd(-7)
t.seth(0)
t.fd(70)
t.pd()
t.begin_fill()
t.seth(100)
t.circle(-50,50)
t.circle(-10,120)
t.circle(-50,54)
t.end_fill()
t.pu()
t.seth(90)
t.fd(-12)
t.seth(0)
t.fd(30)
t.pd()
t.begin_fill()
t.seth(100)
t.circle(-50,50)
t.circle(-10,120)
t.circle(-50,56)
t.end_fill()
#眼睛
t.color((255,155,192),"white")
t.pu()
t.seth(90)
t.fd(-20)
t.seth(0)
t.fd(-95)
t.pd()
t.begin_fill()
t.circle(15)
t.end_fill()
t.color("black")
t.pu()
t.seth(90)
t.fd(12)
t.seth(0)
t.fd(-3)
t.pd()
t.begin_fill()
t.circle(3)
t.end_fill()
t.color((255,155,192),"white")
t.pu()
t.seth(90)
t.fd(-25)
t.seth(0)
t.fd(40)
t.pd()
t.begin_fill()
t.circle(15)
t.end_fill()
t.color("black")
t.pu()
t.seth(90)
t.fd(12)
t.seth(0)
t.fd(-3)
t.pd()
t.begin_fill()
t.circle(3)
t.end_fill()
#腮
t.color((255,155,192))
t.pu()
t.seth(90)
t.fd(-95)
t.seth(0)
t.fd(65)
t.pd()
t.begin_fill()
t.circle(30)
t.end_fill()
#嘴
t.color(239,69,19)
t.pu()
t.seth(90)
t.fd(15)
t.seth(0)
t.fd(-100)
t.pd()
t.seth(-80)
t.circle(30,40)
t.circle(40,80)
#身体
t.color("red",(255,99,71))
t.pu()
t.seth(90)
t.fd(-20)
t.seth(0)
t.fd(-78)
t.pd()
t.begin_fill()
t.seth(-130)
t.circle(100,10)
t.circle(300,30)
t.seth(0)
t.fd(230)
t.seth(90)
t.circle(300,30)
t.circle(100,3)
t.color((255,155,192),(255,100,100))
t.seth(-135)
t.circle(-80,63)
t.circle(-150,24)
t.end_fill()
#手
t.color((255,155,192))
t.pu()
t.seth(90)
t.fd(-40)
t.seth(0)
t.fd(-27)
t.pd()
t.seth(-160)
t.circle(300,15)
t.pu()
t.seth(90)
t.fd(15)
t.seth(0)
t.fd(0)
t.pd()
t.seth(-10)
t.circle(-20,90)
t.pu()
t.seth(90)
t.fd(30)
t.seth(0)
t.fd(237)
t.pd()
t.seth(-20)
t.circle(-300,15)
t.pu()
t.seth(90)
t.fd(20)
t.seth(0)
t.fd(0)
t.pd()
t.seth(-170)
t.circle(20,90)
#脚
t.pensize(10)
t.color((240,128,128))
t.pu()
t.seth(90)
t.fd(-75)
t.seth(0)
t.fd(-180)
t.pd()
t.seth(-90)
t.fd(40)
t.seth(-180)
t.color("black")
t.pensize(15)
t.fd(20)
t.pensize(10)
t.color((240,128,128))
t.pu()
t.seth(90)
t.fd(40)
t.seth(0)
t.fd(90)
t.pd()
t.seth(-90)
t.fd(40)
t.seth(-180)
t.color("black")
t.pensize(15)
t.fd(20)
#尾巴
t.pensize(4)
t.color((255,155,192))
t.pu()
t.seth(90)
t.fd(70)
t.seth(0)
t.fd(95)
t.pd()
t.seth(0)
t.circle(70,20)
t.circle(10,330)
t.circle(70,30)
2019-01-21T22:42:12 点赞:1
在 【招人帖】巫师请进,记得对周围的麻瓜使用闭耳塞听咒 中回复
你在编程猫的名字:PI3141
你的昵称(pottermore上的或者是你在编程猫上的):Friks
姓名(这里填的是英文,比如说你在pottermore上的名字)(格式为名-中间名【选填】-姓):Baron-Pie-Friks(巴伦-派-弗利克斯)
年龄(十一岁或十一岁以上):11
霍格沃茨年纪(就是你的年龄减十一啦!如果你十一岁,那就是一年级,以此类推):1
外貌:黑短发,棕眼,带眼镜
魔杖:独角兽毛,雪松木,十又四分之三英寸,稍带弹性
擅长:预言术,魁地奇
不擅长:作者自己看吧
血统:爷爷爸爸妈妈是巫师,奶奶是麻瓜
性格:淡定,幽默
爱好:魁地奇
宠物:黑鸟
喜欢的东西:自己的扫帚,还有除南瓜外任何食物
讨厌的东西:南瓜
分到狮院吧
2019-06-22T20:02:07 点赞:0
在 【无厘头】亮出你们的复制吧~ 中回复
http://www.microsoft.com/zh-cn/software-download/techbench
2019-07-07T10:51:27 点赞:0
在 无限循环?! 中回复
2019-08-27T20:35:31 点赞:0
在 【招人帖】巫师请进,记得对周围的麻瓜使用闭耳塞听咒 中回复
挖坟并吐槽……
“我忍不住上去,用手指捏了捏他软弹的脸蛋,喵喵抓住他肩膀的那只黑鸟用尖锐的喙部戳了喵的脑袋,表示‘主人是我的,不许和我抢’。”
作者你是怎么知道我脸很好捏的!!!!!
2019-09-21T13:13:23 点赞:1