2020年3月24日
摘要: 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 叫你一声你敢应吗 阅读(254) 评论(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 叫你一声你敢应吗 阅读(238) 评论(0) 推荐(0) 编辑
  2020年3月22日
摘要: import turtle min=eval(input())x=eval(input())turtle.color(input(""))turtle.pensize(10)for i in range(x): turtle.penup() turtle.goto(0,-(20+min)*(i+1) 阅读全文
posted @ 2020-03-22 17:53 叫你一声你敢应吗 阅读(138) 评论(0) 推荐(0) 编辑
  2020年3月19日
摘要: x=input()print("欢迎你,"+x+"同学!") 阅读全文
posted @ 2020-03-19 22:19 叫你一声你敢应吗 阅读(78) 评论(0) 推荐(0) 编辑
摘要: m=eval(input ())n=eval(input ())n1=m+nn2=m*nn3=pow(m,n)n4=n/mn5=max(m,n)print(int(n1),n2,n3,int(n4),n5) 阅读全文
posted @ 2020-03-19 21:59 叫你一声你敢应吗 阅读(464) 评论(0) 推荐(0) 编辑
摘要: print('世界,你好!') 阅读全文
posted @ 2020-03-19 21:54 叫你一声你敢应吗 阅读(74) 评论(0) 推荐(0) 编辑
摘要: n=eval(input())n1=pow(n,0)n2=pow(n,1)n3=pow(n,2)n4=pow(n,3)n5=pow(n,4)n6=pow(n,5)print(n1,n2,n3,n4,n5,n6) 阅读全文
posted @ 2020-03-19 21:49 叫你一声你敢应吗 阅读(122) 评论(0) 推荐(0) 编辑
摘要: y=input("")x=input("")t=",我想对你说,"final=y+t+xprint(final) 阅读全文
posted @ 2020-03-19 21:47 叫你一声你敢应吗 阅读(90) 评论(0) 推荐(0) 编辑
摘要: import turtle turtle.color=('green')turtle.pensize(2) turtle.fd(200)for i in range(2): turtle.rt(120) turtle.fd(200) turtle.rt(60)turtle.fd(200) for i 阅读全文
posted @ 2020-03-19 21:42 叫你一声你敢应吗 阅读(126) 评论(0) 推荐(0) 编辑
摘要: import turtle turtle.pensize(3)turtle.rt(120)turtle.fd(400)for i in range(2): turtle.rt(120) turtle.fd(600)turtle.rt(120)turtle.fd(200)turtle.lt(60)tu 阅读全文
posted @ 2020-03-19 21:40 叫你一声你敢应吗 阅读(213) 评论(0) 推荐(0) 编辑