import turtle as t t.fd(100) t.rt(120) t.fd(100) t.rt(120) t.fd(100) t.rt(120)
import turtle as t for i in range(0,3): t.fd(100) t.rt(120)