摘要:
plaincode = input("")for p in plaincode: if ord("a") <= ord(p) <= ord("z"): print(chr(ord("a")+(ord(p)-ord("a")+3)%26),end='') elif ord("A") <= ord(p) 阅读全文
posted @ 2020-03-24 19:55
叫你一声你敢应吗
阅读(266)
评论(0)
推荐(0)
摘要:
import turtle #the backgroundturtle.pensize(1)turtle.color('red')turtle.begin_fill()turtle.setup(1000,1000,0,0)turtle.penup()turtle.goto(0,0)turtle.pe 阅读全文
posted @ 2020-03-24 15:13
叫你一声你敢应吗
阅读(254)
评论(0)
推荐(0)