Python之trutle库-五角星
#!/usr/bin/env python# coding: utf-8# Python turtle库官方文档:https://docs.python.org/2/library/turtle.htmlimport turtle as tt.color('red', 'red')t.begin_fill()for i in range(5): t.fd(200) t.rt(144)t.done()t.end_fill()
本文共 294 字,大约阅读时间需要 1 分钟。
#!/usr/bin/env python# coding: utf-8# Python turtle库官方文档:https://docs.python.org/2/library/turtle.htmlimport turtle as tt.color('red', 'red')t.begin_fill()for i in range(5): t.fd(200) t.rt(144)t.done()t.end_fill()
转载于:https://www.cnblogs.com/nickchen121/p/10825646.html