i saw this code online and i want to know what that third line is for....

import turtle

star = turtle.Turtle()

for i in range(50):
star.forward(50 )
star.right(144)

turtle.done()