Question: The programming language is Python. Complete the code below to draw turn what we currently have into a T-tetromino: This one will be manually graded
The programming language is Python.

Complete the code below to draw turn what we currently have into a T-tetromino: This one will be manually graded by the TAS. Save & Run Original - 1 of 1 Show Feedback Hide Code Show CodeLens 6 7 1 import turtle 2 bob = turtle.Turtle() 3 bob.shape("turtle") 5 def drawSquare(bob, side): for i in range(4): bob.forward(side) bob.rt(90) 9 10 def drawTeeTetromino(bob): 11 drawSquare(bob,50) 12 bob.rt(90) 13 bob.forward(50) 14 drawSquare(bob,50) 15 bob.rt(90) 16 bob. forward(50) 17 drawSquare(bob,50) 1B # Your code below 19 20 21 # Your code above 22 bob.hideturtle 23 24 drawTeeTetromino(bob) 25 Activity: 1 ActiveCode tee Teterimo)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
