Answered step by step
Verified Expert Solution
Question
1 Approved Answer
I am trying to make concentric squares by using turtle on Python. Can someone explain what I am doing wrong, and show me how to
I am trying to make concentric squares by using turtle on Python. Can someone explain what I am doing wrong, and show me how to fix it?
I am trying to make my finished product look something like this
def main ): # create world and turtle earth = makeWorld (800, 800) Josh makeTurtle ( earth ) # change default turtle color # using setPenColor METHOD josh.setPenColor green) loopCount = 1 #repositionTurtle2 ( josh, -200, -200 ) while ( loopCount 10 length = 10 + loopCount * 5 color = makeColor ( loopCount * 25, 0, 0) josh.setPencolor color ) rawSquare josh, length) repositionTurtle2 josh, 0, 25) loopCount = loopCount + 1 def drawSquare (tl, length ): loopCount 1 while ( loopCountStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started