Python之trutle庫-五角星

Python之trutle庫-五角星

A03-五角星.jpg

#!/usr/bin/env python
# coding: utf-8

# Python turtle庫官方文檔:https://docs.python.org/2/library/turtle.html

import turtle as t

t.color('red', 'red')
t.begin_fill()
for i in range(5):
    t.fd(200)
    t.rt(144)
t.done()
t.end_fill()
相關文章
相關標籤/搜索