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