""" 请使用turtle模块画出五角星 """ import turtle a=turtle.Pen() a.shape("arrow") for i in range(5): a.forward(200) a.left(144) a.hideturtle() turtle.done()