智一面的面试题提供python的测试题
使用地址:http://www.gtalent.cn/exam/interview?token=10737428be8e0c037c28caaeb8038b69

分享一个使用Python绘制的五角星小案例
 
下面呈上小代码
 
代码:
import turtle #导入turtle库包

turtle.fillcolor("red")  #填充颜色
turtle.begin_fill()              #开始画,类似起笔

count = 1                        #计时器,用于计录次数

while count <= 5:                #控制绘制次数
    turtle.forward(100)  #画笔绘制的方向,向前移动指定的距离
    turtle.right(144)  #向右转144度
    count += 1                   #循环绘制
    
turtle.end_fill()                #完成填充图片的绘制。

在这里插入图片描述

 
————————————————
智一面的面试题提供python的测试题
使用地址:
http://www.gtalent.cn/exam/interview?token=10737428be8e0c037c28caaeb8038b69