摘要: a=input("") b=input("") print(a+',我想对你说,'+b) 阅读全文
posted @ 2020-03-15 13:08 aoimo 阅读(86) 评论(0) 推荐(0) 编辑
摘要: import turtle turtle.pensize(1) turtle.pencolor("black") #画笔黑色 turtle.left(60) #绘制三角形# for _ in range(3): turtle.forward(200) turtle.right(120) #调整 tu 阅读全文
posted @ 2020-03-15 12:58 aoimo 阅读(154) 评论(0) 推荐(0) 编辑
摘要: import turtle turtle.pensize(1) turtle.pencolor("black") #画笔黑色 turtle.fillcolor("red") #内部填充红色 turtle.begin_fill() turtle.right(30) #绘制三角形# for _ in r 阅读全文
posted @ 2020-03-15 11:41 aoimo 阅读(470) 评论(0) 推荐(0) 编辑
摘要: import turtle turtle.pensize(1) turtle.pencolor("black") #画笔黑色 turtle.fillcolor("red") #内部填充红色 #绘制五角星# turtle.begin_fill() for _ in range(5): #重复执行5次 阅读全文
posted @ 2020-03-15 11:00 aoimo 阅读(97) 评论(0) 推荐(0) 编辑