Python Forum
For loops help, using python turtle
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
For loops help, using python turtle
#2
To draw 5 stick figure you could do something like this:
def main():
    """Draw stick figures, side by side"""
    turtle.pensize(4)
    turtle.title("Stick Figures")
    turtle.up()
    turtle.back(200)
    
    draw_stick_figure()
    turtle.forward(100)
    
    draw_stick_figure()
    turtle.forward(100)
    
    draw_stick_figure()
    turtle.forward(100)
    
    draw_stick_figure()
    turtle.forward(100)
    
    draw_stick_figure()
    turtle.forward(100)
    
    turtle.done()
This draws five stick figures. What instructions were repeated five times? Those instructions are what you want to execute in the loop, nothing more and nothing less.

Then next thing is figure out how to write a loop. You have a loop in you code that would draw an additional two stick figures if you hadn't already called turtle.done(). How could you make that loop execute 5 times?
Reply


Messages In This Thread
RE: For loops help, using python turtle - by deanhystad - Mar-10-2020, 04:20 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Why both loops don't work in python? nau 3 1,159 Sep-21-2022, 02:17 PM
Last Post: rob101
  Why does Python not use parenthesis to contain loops? davidorlow 3 3,534 Jun-09-2021, 06:33 AM
Last Post: Gribouillis
  Python 3 Turtle - Screen Events and Coords peteralien 0 1,722 Aug-18-2020, 11:25 PM
Last Post: peteralien
  Python for loops Kristenl2784 3 55,912 Jun-16-2020, 06:01 PM
Last Post: Yoriz
  Turtle python graphics Y0sh1 6 3,535 Jun-10-2020, 10:05 AM
Last Post: DPaul
  For loops in python Boinbo 3 90,786 Apr-18-2020, 01:23 AM
Last Post: buran
  Python Turtle Help codinghero 1 18,509 Jan-04-2020, 12:46 AM
Last Post: ichabod801
  Python Turtle and order of implementation query Parsleigh 2 2,820 Mar-04-2019, 02:43 PM
Last Post: Parsleigh
  wn = turtle.screen() AttributeError: module 'turtle' has no attribute 'screen' Shadower 1 6,232 Feb-06-2019, 01:25 AM
Last Post: woooee
  Help! Turtle not working, even when we click the turtle demo in IDLE nothing happens. BertyBee 3 5,706 Jan-04-2019, 02:44 AM
Last Post: SheeppOSU

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020