I am struggling to make a diamond in python turtle, I have tried to find tutorials but it is not the shape I want.
this is the shape I want. Diamond shape I want:
Can you please help me?
code:
for _ in range(1):
turtle.left(60)
turtle.forward(200)
turtle.left(120)
turtle.forward(200)
turtle.left(120)
turtle.forward(200)
turtle.left(150)```
#this just makes a big triangle, I want it to loop back and make another triangle. Help me!