03 2020 档案

摘要: 阅读全文
posted @ 2020-03-15 15:36 程序小白007 阅读(126) 评论(0) 推荐(0)
摘要:name=input("") print("Hello,"+name.title()+"同学!") 阅读全文
posted @ 2020-03-15 15:33 程序小白007 阅读(129) 评论(0) 推荐(0)
摘要:print("Hello, world!") 阅读全文
posted @ 2020-03-15 15:30 程序小白007 阅读(135) 评论(0) 推荐(0)
摘要:i=0 N=eval(input()) while i<6: temp=pow(N,i) print(temp) i=i+1 阅读全文
posted @ 2020-03-15 15:27 程序小白007 阅读(196) 评论(0) 推荐(0)
摘要:a=input("") b=input("") print(a+'我想对你说,'+b) 阅读全文
posted @ 2020-03-15 15:24 程序小白007 阅读(388) 评论(0) 推荐(0)
摘要:import turtle turtle.screensize(800,800) turtle.setup(800,500,100) turtle.penup() turtle.fd(-100) turtle.pendown() turtle.pensize(7) turtle.pencolor(" 阅读全文
posted @ 2020-03-15 15:22 程序小白007 阅读(262) 评论(0) 推荐(0)
摘要:import turtle turtle.screensize(800,800,"brown") turtle.setup(800,500,100) turtle.penup() turtle.fd(-100) turtle.pendown() turtle.pensize(7) turtle.pe 阅读全文
posted @ 2020-03-15 15:19 程序小白007 阅读(375) 评论(0) 推荐(0)
摘要:import turtle import time turtle.pensize(1) turtle.pencolor("black") turtle.fillcolor("red") #绘制五角星# turtle.begin_fill() for _ in range(5): turtle.for 阅读全文
posted @ 2020-03-15 15:16 程序小白007 阅读(331) 评论(0) 推荐(0)