generated from mwc/lab_turtle
	It was hard at first, but when it made sense, I felt joy. It took a couple days to even start the program. But now it feels seamless. So happy. The situation that led to this emotion, was feelign overwhelmed by the coding process, then when it clicked it was so satisfying!
		
			
				
	
	
		
			22 lines
		
	
	
		
			269 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			269 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from turtle import (
 | 
						|
    forward,
 | 
						|
    back,
 | 
						|
    left,
 | 
						|
    right,
 | 
						|
    penup,
 | 
						|
    pendown,
 | 
						|
    color,
 | 
						|
)
 | 
						|
 | 
						|
forward(50)
 | 
						|
right(360 * 2 / 5)
 | 
						|
forward(100)
 | 
						|
right(360 * 2 / 5)
 | 
						|
forward(100)
 | 
						|
right(360 * 2 / 5)
 | 
						|
forward(100)
 | 
						|
right(360 * 2 / 5)
 | 
						|
forward(50)
 | 
						|
right(360 * 2 / 5)
 | 
						|
 | 
						|
input() |