
Lv.1
签名:下面有惊喜 没了 真的 没了 我QQ(微 信同号):1315858881
在 【手机编程】用打一盘王者荣耀的时间,自己编程出一个游戏! 中回复
answer = input ('技术喵你能修复kitten 4在iPad上的所有bug吗?')
if ('answer == 能'):
print ('技术喵最好了!')
else:
print ('技术喵我家电脑可报废了你太坏了不给你小鱼饼干了!')
# answer变量=询问‘技术喵你能修复kitten 4在iPad上的所有bug吗?’ 如果answer=能 打印‘技术喵最好了!’ 否则 打印‘技术喵我家电脑可报废了你太坏了不给你小鱼饼干了!’
# 我翻译的行吧!!!2020-04-15T21:18:43 点赞:4
在 关于工作室交流系统 中回复
更新:聊天信息框不是一直显示的,如果在其他界面信息框还是显示直接输入空格
更新:不会出现[12:2]这样的时间,消息是这样
如:[12:02]YYD我的苹果呢:大家好
清空了聊天信息
更新:感谢羊汉羊的《鱼游工作室--今生不入鱼游团便是英雄也枉然》原作品:https://shequ.codemao.cn/work/46845607在主界面点击按钮即可进入,按返回即可返回
2020-04-25T16:48:54 点赞:0
在 【初级PYTHON小课堂】特别篇:Hello turtle! 上篇 中回复
# 这些你应该不用讲,积木模式都可以的
print('这些你应该不用讲,积木模式都可以的')2020-05-20T19:14:35 点赞:0
在 【Python】终于把“花式3D字体生成器”弄完了(公开源代码) 中回复
import turtle
__Pen = turtle.Pen()
def _E9_80_89_E6_8B_A9():
word = input('请输入文字:')
print('字体样式:')
print('1、立体字')
print('2、金属字')
print('3、金字塔字(支持单字)')
print('4、渐变字')
print('5、彩虹字')
typeface = int(input('请选择样式(序号):'))
__Pen.hideturtle()
__Pen.speed(0)
print('字体生成中,请稍后......')
if (typeface == 1):
_E7_AB_8B_E4_BD_93_E5_AD_97(word)
elif (typeface == 2):
_E9_87_91_E5_B1_9E_E5_AD_97(word)
elif (typeface == 3):
_E9_87_91_E5_AD_97_E5_A1_94_E5_AD_97(word, 100)
elif (typeface == 4):
_E6_B8_90_E5_8F_98_E5_AD_97(word, 100, 0, ['ffccff', 'ff99ff', 'cc66cc', 'cc33cc', '993399', '663366', '330033'])
elif (typeface == 5):
_E5_BD_A9_E8_99_B9_E5_AD_97(word, 0, ['red', 'orange', 'yellow', 'green', 'cyan', 'blue'])
else:
pass
print('字体生成完毕!')
def _E7_AB_8B_E4_BD_93_E5_AD_97(word):
__Pen.penup()
__Pen.goto((-150), 0)
__Pen.setheading((-135))
turtle.bgcolor("#999999")
for __count in range(60):
__Pen.forward(1)
__Pen.pencolor("#000000")
__Pen.write(word, font = ('Arial', 60, 'bold'))
__Pen.pencolor("#ffffff")
__Pen.write(word, font = ('Arial', 58, 'bold'))
def _E9_87_91_E5_B1_9E_E5_AD_97(word):
__Pen.penup()
__Pen.goto((-170), 0)
__Pen.setheading(90)
turtle.bgcolor("#666666")
for __count in range(60):
__Pen.forward(1)
__Pen.pencolor("#cccccc")
__Pen.write(word, font = ('Arial', 60, 'italic'))
__Pen.pencolor("#333333")
__Pen.write(word, font = ('Arial', 60, 'italic'))
__Pen.pencolor("#cccccc")
__Pen.write(word, font = ('Arial', 60, 'italic'))
def _E9_87_91_E5_AD_97_E5_A1_94_E5_AD_97(word,scale):
__Pen.penup()
__Pen.goto((-170), 0)
__Pen.setheading((20 / len(word)))
turtle.bgcolor("#ffcc33")
for __count in range(20):
__Pen.forward((1.5 * len(word)))
__Pen.pencolor("#ffff99")
scale -= 1
__Pen.write(word, font = ('Arial', scale, 'normal'))
__Pen.pencolor("#996633")
scale -= 1
__Pen.write(word, font = ('Arial', scale, 'normal'))
__Pen.pencolor("#663333")
scale -= 1
__Pen.write(word, font = ('Arial', scale, 'normal'))
def _E6_B8_90_E5_8F_98_E5_AD_97(word,scale,color,color_list):
__Pen.penup()
__Pen.goto((-170), 0)
__Pen.setheading((-20))
turtle.bgcolor("#ffffff")
for color in range(0, 7):
__Pen.forward((1.5 * len(word)))
__Pen.pencolor(('#' + color_list[color]))
scale -= 2
__Pen.write(word, font = ('Arial', scale, 'bold'))
def _E5_BD_A9_E8_99_B9_E5_AD_97(word,color,color_list):
__Pen.penup()
__Pen.goto((-170), 0)
__Pen.setheading((-135))
turtle.bgcolor("#ffffcc")
for color in range(0, 6):
for __count in range(2):
__Pen.forward(2)
__Pen.pencolor(color_list[color])
__Pen.write(word, font = ('Arial', 60, 'bold'))
__Pen.forward(2)
__Pen.pencolor('purple')
__Pen.write(word, font = ('Arial', 60, 'bold'))
#开始进入Python的世界
_E9_80_89_E6_8B_A9()
这个没有用,看不见字!!!你的代码太666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666v666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666了
turtle.done()
2020-05-20T19:32:39 点赞:0