使用tutle库在Python中绘制简单图形
1 """ 2 作者:李舵 3 功能:五角星绘制 4 版本:1.0 5 日期:2019-5-9 6 """ 7 8 import turtle 9 10 11 def main(): 12 """ 13 主函数 14 """ 15 # 计数器 16 count = 1 17 18 while count <= 5: 19 turtle.forward(100) 20 turtle.right(144) 21 count += 1 22 23 turtle.exitonclick() 24 25 26 if __name__ == ‘__main__‘: 27 main()
补充说明:
1. turtle库:
2. 形状绘制函数
3. 绘图坐标体系
原文:https://www.cnblogs.com/liduo0413/p/10836441.html