摘要: 阅读全文
posted @ 2020-03-15 15:36 程序小白007 阅读(74) 评论(0) 推荐(0) 编辑
摘要: name=input("") print("Hello,"+name.title()+"同学!") 阅读全文
posted @ 2020-03-15 15:33 程序小白007 阅读(107) 评论(0) 推荐(0) 编辑
摘要: print("Hello, world!") 阅读全文
posted @ 2020-03-15 15:30 程序小白007 阅读(130) 评论(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 阅读(184) 评论(0) 推荐(0) 编辑
摘要: a=input("") b=input("") print(a+'我想对你说,'+b) 阅读全文
posted @ 2020-03-15 15:24 程序小白007 阅读(375) 评论(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 阅读(246) 评论(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 阅读(347) 评论(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 阅读(323) 评论(0) 推荐(0) 编辑