2019.06.07(am): How to draw the star with python turtle

code

import turtle
 
t = turtle.Turtle()
 
for i in range(5):
    t.forward(150)
    t.right(144)