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) 编辑
摘要: import turtle turtle.color('black','red')turtle.pensize(10)turtle.begin_fill()for i in range(5): turtle.fd(200) turtle.rt(144) turtle.end_fill() 阅读全文
posted @ 2020-03-19 21:37 叫你一声你敢应吗 阅读(83) 评论(0) 推荐(0) 编辑