编程之美——让你的电脑秒变绘画大师的几行代码(Python turtle)

今天很兴奋,只用了一小段Python turtle代码(附在文末)就把电脑变成了绘画大师,太神奇了。

仿佛有种悟道的感觉,哈哈。编程之美就是一种简单重复的哲学。

其实纵观计算机程序的本质,也不过是0与1的结合。

绝招:简单的元素,重复、重复、再重复。

工具:Python IDLE

我们先看下效果图吧:

编程之美——让你的电脑秒变绘画大师的几行代码(Python turtle)_第1张图片
Python turtle效果图1
编程之美——让你的电脑秒变绘画大师的几行代码(Python turtle)_第2张图片
Python turtle效果图2
编程之美——让你的电脑秒变绘画大师的几行代码(Python turtle)_第3张图片
Python turtle效果图3
编程之美——让你的电脑秒变绘画大师的几行代码(Python turtle)_第4张图片

代码解释:draw()函数——画闭合图形;runTurtle()------画一个类图效果图1的图案单元;main()函数就是随机创作的函数,效果图2-3就是它的作品。

你需要做什么?只要做一件事情——修改数字!

第一层次的电脑画家:

用runTurtle()函数,修改参数。

第二层次的电脑画家:

用main()函数,修改参数

第三层次的画家:

结合runTurtle()函数、main()函数、修改参数、同时在Python shell中进行互动操作(位置、笔触颜色粗细)、写上艺术字。


附录:代码

```

from turtle import *

import random

def draw(numOfLine,lenghth):#numOfLine代表边数,lenghth边长

    for i in range(numOfLine):

        forward(lenghth)

        right(180-180*(numOfLine-2)/numOfLine)

def runTurtle(numOfObj,angle,numofL,Len):#numOfObj形状个数,angle旋转角度

    for i in range(numOfObj):

        draw(numofL,Len)

        right(angle)

def main(num):

    screensize(800,600,'white')

    for i in range(num):

        turtleX=random.randint(-400,400)

        turtleY=random.randint(-300,300)

        penup()

        goto(turtleX,turtleY)

        pendown()

        runTurtle(36,10,4,100*random.random())

```

你可能感兴趣的:(编程之美——让你的电脑秒变绘画大师的几行代码(Python turtle))