Python新手入门之画出图形(代码教程)
程序员文章站
2024-01-16 23:46:40
去python官网下在python------有3.6版本,2.7版本。一般都是3.6吧
print ("Hello Python")
python的h...
去python官网下在python------有3.6版本,2.7版本。一般都是3.6吧
print ("Hello Python")
python的hello world就是这么简单明了。
今天老师演示了一个程序,出来是这样的:一个画图程序
上代码:
#This is a python programe 这是注释 import turtle t=turtle.Pen() colors=['red','purple','blue','green','yellow','orange'] turtle.bgcolor('black') for x in range(500000): t.width(x/10+1) t.forward(x) t.left(63) t.pencolor(colors[x%6])
很简短的代码就能实现自己画图的功能,参数可直接调节,慢慢折腾把。
上一篇: jsp前台格式化日期的代码实现