python基础

Posted 193杨晓玲

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python基础相关的知识,希望对你有一定的参考价值。

from turtle import *
def draw(r):
    begin_fill()
    for i in range(5):
        forward(r)
        right(144)
    end_fill()
def mygoto(x, y):
        up()
        goto(x, y)
        down()

setup(700,500)
bgcolor(\'red\')
color(\'yellow\')
speed(6)
fillcolor(\'yellow\')
hideturtle()

mygoto(-300,100)
draw(100)

mygoto(-190,180)
draw(35)

mygoto(-140,130)
draw(35)

mygoto(-140,70)
draw(35)

mygoto(-190,20)
draw(35)

done()


   运行结果

以上是关于python基础的主要内容,如果未能解决你的问题,请参考以下文章

常用python日期日志获取内容循环的代码片段

python 有用的Python代码片段

Python 向 Postman 请求代码片段

python [代码片段]一些有趣的代码#sort

使用 Python 代码片段编写 LaTeX 文档

python 机器学习有用的代码片段