generated from mwc/lab_iteration
	Checkpoint 1: - It wasn't that difficult for me because I have a little prior coding experience. I tried multiple different things and realized I could make the numbers in the list the same as the parameter so each side of the square would be that number.
		
			
				
	
	
		
			11 lines
		
	
	
		
			196 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			196 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from turtle import *
 | 
						|
 | 
						|
def square(side_length):
 | 
						|
    sizes = [side_length, side_length, side_length, side_length]
 | 
						|
    for side in sizes:
 | 
						|
        forward(side)
 | 
						|
        right(90)
 | 
						|
square(100)
 | 
						|
input()
 | 
						|
 |