浪漫至死不渝,程序员的浪漫——python绘图

python也可以浪漫,放图~

 

 

代码来咯,灰色粉色樱花,动态飘落花瓣的樱花都有~

#灰色樱花#

#PythonDraw.py
import turtle
turtle.setup(650,350,200,200)
turtle.pensize(200)
turtle.pencolor('yellow')
turtle.penup()
turtle.goto(-100,-50)
turtle.pendown()
turtle.circle(50,360)


turtle.pencolor('white')
turtle.pensize(25)
turtle.penup()
turtle.left(45)
turtle.goto(-190,45)
turtle.pendown()
turtle.circle(-40,90)

turtle.pencolor('black')
turtle.pensize(10)
turtle.penup()
turtle.left(90)
turtle.goto(-200,50)
turtle.pendown()
turtle.circle(-50,90)
turtle.circle(-12,180)
turtle.circle(30,90)
turtle.circle(-12,180)
turtle.pensize(20)
turtle.penup()
turtle.goto(-195,40)
turtle.pendown()
turtle.circle(5,360)

turtle.pencolor('white')
turtle.pensize(25)
turtle.penup()
turtle.goto(-70,45)
turtle.pendown()
turtle.circle(-40,90)

turtle.pencolor('black')
turtle.pensize(10)
turtle.penup()
turtle.left(90)
turtle.goto(-70,50)
turtle.pendown()
turtle.circle(-50,90)
turtle.circle(-12,180)
turtle.circle(30,90)
turtle.circle(-12,180)
turtle.pensize(20)
turtle.penup()
turtle.goto(-65,40)
turtle.pendown()
turtle.circle(5,360)

turtle.pensize(10)
turtle.penup()
turtle.goto(-60,-30)
turtle.pendown()
turtle.left(225)
turtle.circle(-40,180)
turtle.done()

#粉色樱花#

from turtle import *
from random import *
from math import *

def tree(n,l):
    pd()#下笔
    #阴影效果
    t = cos(radians(heading()+45))/8+0.25
    pencolor(t,t,t)
    pensize(n/3)
    forward(l)#画树枝

    if n>0:
        b = random()*15+10 #右分支偏转角度
        c = random()*15+10 #左分支偏转角度
        d = l*(random()*0.25+0.7) #下一个分支的长度
        #右转一定角度,画右分支
        right(b)
        tree(n-1,d)
        #左转一定角度,画左分支
        left(b+c)
        tree(n-1,d)
        #转回来
        right(c)
    else:
        #画叶子
        right(90)
        n=cos(radians(heading()-45))/4+0.5
        pencolor(n,n*0.8,n*0.8)
        circle(3)
        left(90)
        #添加0.3倍的飘落叶子
        if(random()>0.7):
            pu()
            #飘落
            t = heading()
            an = -40 +random()*40
            setheading(an)
            dis = int(800*random()*0.5 + 400*random()*0.3 + 200*random()*0.2)
            forward(dis)
            setheading(t)
            #画叶子
            pd()
            right(90)
            n = cos(radians(heading()-45))/4+0.5
            pencolor(n*0.5+0.5,0.4+n*0.4,0.4+n*0.4)
            circle(2)
            left(90)
            pu()
            #返回
            t=heading()
            setheading(an)
            backward(dis)
            setheading(t)
    pu()
    backward(l)#退回

bgcolor(0.5,0.5,0.5)#背景色
ht()#隐藏turtle
speed(0)#速度 1-10渐进,0 最快
tracer(0,0)
pu()#抬笔
backward(100)
left(90)#左转90度
pu()#抬笔
backward(300)#后退300
tree(12,100)#递归7层
done()

#动态樱花#

import turtle as T

import random

import time

 

# 画樱花的躯干(60,t)

def Tree(branch, t):

    time.sleep(0.0005)

    if branch > 3:

        if 8 <= branch <= 12:

            if random.randint(0, 2) == 0:

                t.color('snow')  # 白

            else:

                t.color('lightcoral')  # 淡珊瑚色

            t.pensize(branch / 3)

        elif branch < 8:

            if random.randint(0, 1) == 0:

                t.color('snow')

            else:

                t.color('lightcoral')  # 淡珊瑚色

            t.pensize(branch / 2)

        else:

            t.color('sienna')  # 赭(zhě)色

            t.pensize(branch / 10)  # 6

        t.forward(branch)

        a = 1.5 * random.random()

        t.right(20 * a)

        b = 1.5 * random.random()

        Tree(branch - 10 * b, t)

        t.left(40 * a)

        Tree(branch - 10 * b, t)

        t.right(20 * a)

        t.up()

        t.backward(branch)

        t.down()

 

# 掉落的花瓣

def Petal(m, t):

    for i in range(m):

        a = 200 - 400 * random.random()

        b = 10 - 20 * random.random()

        t.up()

        t.forward(b)

        t.left(90)

        t.forward(a)

        t.down()

        t.color('lightcoral')  # 淡珊瑚色

        t.circle(1)

        t.up()

        t.backward(a)

        t.right(90)

        t.backward(b)

 

# 绘图区域

t = T.Turtle()

# 画布大小

w = T.Screen()

t.hideturtle()  # 隐藏画笔

t.getscreen().tracer(5, 0)

w.screensize(bg='wheat')  # wheat小麦

t.left(90)

t.up()

t.backward(150)

t.down()

t.color('sienna')

 

# 画樱花的躯干

Tree(60, t)

# 掉落的花瓣

Petal(200, t)

w.exitonclick()

  • 1
    点赞
  • 9
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

geoffreyer

感谢各位土豪,笔芯~

¥2 ¥4 ¥6 ¥10 ¥20
输入1-500的整数
余额支付 (余额:-- )
扫码支付
扫码支付:¥2
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、C币套餐、付费专栏及课程。

余额充值