3.02forLoopsName:This assignment has three parts.Part One:Write a program to draw a repetitive pattern or outline of a shape usingforloops and Turtle Graphics. Use the following guidelines to write your program.1.Decide on a repetitive pattern or the outline of a shape, such as a house, to draw.2.Give your artwork a name. Print the name to the output.3.Usingforloops and the Turtle Module, draw the outline of a shape or a repetitivepattern.4.At least oneforloop that repeats three or more times must be used.5.Use at least one color apart from black.6.Write the pseudocode for this program. Be sure to include any needed input,calculations, and output.Insert your pseudocode here:INPUT:Draw one horizontal line,draw a 90-degree vertical line, draw a 90-degreehorizontal line, draw a diagonal line in blue,draw one more diagonal line in blue,draw ahorizontal line, then go vertically down.OUTPUT: Draw a house with a black bottom and a blue roofPart Two: