Python基础

Posted 李文辉

tags:

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

代码:

# -*- coding:utf-8 -*-
from turtle import *
def mygoto(x,y):
    up()
    goto(x,y)
    down()
def drawStar(r):
    begin_fill()
    for i in range(5):
        forward(r)
        right(144)
    end_fill()
setup(400,200)
bgcolor(\'red\')
color(\'yellow\')
fillcolor(\'yellow\')
mygoto(-360,200)
drawStar(100)
mygoto(-265,275)
drawStar(50)
mygoto(-205,215)
drawStar(50)
mygoto(-205,150)
drawStar(50)
mygoto(-265,105)
drawStar(50)
done()

截图:

 

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

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

python 有用的Python代码片段

Python 向 Postman 请求代码片段

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

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

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