import turtle wm = turtle.Screen() wm.title("Star") wm.bgcolor("wheat") tom = turtle.Turtle() # tom.forward(160) # tom.right(144) # tom.forward(160) # tom.right(144) # tom.forward(160) # tom.right(144) # tom.forward(160) # tom.right(144) # tom.forward(160) for i in range(5): tom.forward(160) tom.right(144) wm.mainloop()