generated from mwc/lab_turtle
	pink arrow going through it. This process included tasks such as roation, color changes and using the penup/pendown commands. At first I felt a bit frustrated because I couldm't really figure out the UI, since I used Python only in Jupyter Notebook before. I also felt confused when I was trying to figure out the initial oritentation of the "pen". Once I figured that out, it was smooth sailing. It felt funny to need geometry after a long time not needing it. Once I was done, I felt happy!
		
			
				
	
	
		
			52 lines
		
	
	
		
			586 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			586 B
		
	
	
	
		
			Python
		
	
	
	
	
	
import math
 | 
						|
from turtle import (
 | 
						|
    forward,
 | 
						|
    back,
 | 
						|
    left,
 | 
						|
    right,
 | 
						|
    penup,
 | 
						|
    pendown,
 | 
						|
    color,
 | 
						|
)
 | 
						|
 | 
						|
color("PaleGreen")
 | 
						|
right(315)
 | 
						|
forward(300)
 | 
						|
left(45)
 | 
						|
forward(100)
 | 
						|
left(45)
 | 
						|
forward(100)
 | 
						|
left(45)
 | 
						|
forward(100)
 | 
						|
left(45)
 | 
						|
forward(100)
 | 
						|
right(90)
 | 
						|
forward(100)
 | 
						|
left(45)
 | 
						|
forward(100)
 | 
						|
left(45)
 | 
						|
forward(100)
 | 
						|
left(45)
 | 
						|
forward(100)
 | 
						|
left(45)
 | 
						|
forward(300)
 | 
						|
left(45)
 | 
						|
forward(60)
 | 
						|
penup()
 | 
						|
back(300/(math.sqrt(2)))
 | 
						|
color("DeepPink")
 | 
						|
pendown()
 | 
						|
right(135)
 | 
						|
back(600)
 | 
						|
right(90)
 | 
						|
forward(5)
 | 
						|
right(135)
 | 
						|
forward(5*(math.sqrt(2)))
 | 
						|
right(90)
 | 
						|
forward(5*(math.sqrt(2)))
 | 
						|
right(135)
 | 
						|
forward(5)
 | 
						|
input()
 | 
						|
 | 
						|
 |