圣诞节来了,给大家画一个圣诞树 您所在的位置:网站首页 画圣诞老人一步一步来画 圣诞节来了,给大家画一个圣诞树

圣诞节来了,给大家画一个圣诞树

2024-07-17 12:04| 来源: 网络整理| 查看: 265

import os import sys import turtle

def demo1():     height = 5     stars = 1     for i in range(height):         print((' ' * (height - i)) + ('*' * stars))         stars += 2     print((' ' * height) + '|')

def demo2():     screen = turtle.Screen()     screen.setup(375, 700)     circle = turtle.Turtle()     circle.shape('circle')     circle.color('red')     circle.speed('fastest')     circle.up()

    square = turtle.Turtle()     square.shape('square')     square.color('green')     square.speed('fastest')     square.up()

    circle.goto(0, 280)     circle.stamp()

    k = 0     for i in range(1, 13):         y = 30 * i         for j in range(i - k):             x = 30 * j             square.goto(x, -y + 280)             square.stamp()             square.goto(-x, -y + 280)             square.stamp()

        if i % 4 == 0:             x = 30 * (j + 1)             circle.color('red')             circle.goto(-x, -y + 280)             circle.stamp()             circle.goto(x, -y + 280)             circle.stamp()             k += 3

        if i % 4 == 3:             x = 30 * (j + 1)             circle.color('yellow')             circle.goto(-x, -y + 280)             circle.stamp()             circle.goto(x, -y + 280)             circle.stamp()

    square.color('brown')     for i in range(13, 17):         y = 30 * i         for j in range(2):             x = 30 * j             square.goto(x, -y + 280)             square.stamp()             square.goto(-x, -y + 280)             square.stamp()

    turtle.done()

if __name__ == "__main__":     #demo1()     demo2()



【本文地址】

公司简介

联系我们

今日新闻

    推荐新闻

      专题文章
        CopyRight 2018-2019 实验室设备网 版权所有