Python
伤言凉语
这个作者很懒,什么都没留下…
展开
-
温度转化
temp = input("请输入带单位的温度:") if temp[-1] in ['t','T']: if eval(temp[0:-1])>=0: C = eval(temp[0:-1])-273.15 print("摄氏温度为{:.2f}C".format(C)) else: print("不存在该温度") elif t...原创 2018-05-26 21:25:00 · 763 阅读 · 0 评论 -
小猪佩奇绘制
import turtle as t t.pensize(4) t.hideturtle() t.colormode(255) t.color((255, 155, 192), "pink") t.setup(840, 500) t.speed(15) # 鼻子 t.pu() t.goto(-100, 100) t.pd() t.seth(-30) t.begin_fill() a = 0.4...转载 2018-06-03 23:30:38 · 4797 阅读 · 0 评论