赞
踩
今天主要分享两个有趣的python脚本,主要是看下turtle的一些用法,下面一起来看看吧~
#!/usr/bin/python# coding=utf-8 import turtle as timport timet.color("red", "yellow")t.speed(10)t.begin_fill()for _ in range(50): t.forward(200) t.left(170)t.end_fill()time.sleep(1)
实现如下:
#!/usr/bin/pythonimport turtleimport timeturtle.pensize(5)turtle.pencolor("yellow")turtle.fillcolor("red") turtle.begin_fill()for _ in range(5): turtle.forward(200) turtle.right(144)turtle.end_fill()time.sleep(2)turtle.penup()turtle.goto(-150,-120)turtle.color("violet")turtle.write("五角星", font=('Arial', 40, 'normal'))time.sleep(3)
执行如下:
觉得有用的朋友多帮忙转发哦!后面会分享更多devops和DBA方面的内容,感兴趣的朋友可以关注下~
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。