short programming projects for kids

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • bobdc

    #1

    short programming projects for kids

    I will be teaching an "Introducti on to Programming" class to some
    middle school aged children and will be using Python, obviously. Does
    anyone have suggestions for simple little programs to create and
    analyze with them after I get past turtle graphics?

    Turtle graphics will be plenty for the first session, and I will leave
    time to ask them what they'd like to do in later sessions, but I was
    curious if anyone on the list has experience picking pedagogical
    programming examples appropriate for twelve-year-olds' attention spans.
    thanks,

    Bob

  • André Roberge

    #2
    Re: short programming projects for kids

    bobdc wrote:[color=blue]
    > I will be teaching an "Introducti on to Programming" class to some
    > middle school aged children and will be using Python, obviously. Does
    > anyone have suggestions for simple little programs to create and
    > analyze with them after I get past turtle graphics?
    >
    > Turtle graphics will be plenty for the first session, and I will leave
    > time to ask them what they'd like to do in later sessions, but I was
    > curious if anyone on the list has experience picking pedagogical
    > programming examples appropriate for twelve-year-olds' attention spans.
    > thanks,
    >
    > Bob
    >[/color]
    While it is not python per se, I suggest you have a look at GvR
    (Guido van Robot) (The app is written in Python but is too complicated
    for beginners). It is hosted on sourceforge (gvr.sourceforg e.net).
    It is a very interesting way (imho) to learn about programming, in
    a pythonic way.

    (somewhat shameless plug follows:)
    A 'more advanced version' of GvR which uses the full Python syntax
    is RUR-PLE (rur-ple.sourceforge .net). The version currently hosted
    there does NOT work under Linux (untested on Mac).
    It uses wxPython 2.4 and will not work with 2.5.
    An updated release that will work under both Linux and Windows,
    and under both wxPython 2.4 and 2.5 will come out very soon, I hope.

    I'm working on it :-) I have two kids (ages 11 and 13) and plan to use
    rur-ple to teach them about programming. Note that, even though
    I plan it to be suitable for motivated children (with some guidance),
    the end product (to be finished in a year?) is planned to be suitable
    for a complete first-year university computer science.

    Andre Roberge

    Comment

    • Adrian Casey

      #3
      Re: short programming projects for kids

      André Roberge wrote:
      [color=blue]
      > bobdc wrote:[color=green]
      >> I will be teaching an "Introducti on to Programming" class to some
      >> middle school aged children and will be using Python, obviously. Does
      >> anyone have suggestions for simple little programs to create and
      >> analyze with them after I get past turtle graphics?
      >>
      >> Turtle graphics will be plenty for the first session, and I will leave
      >> time to ask them what they'd like to do in later sessions, but I was
      >> curious if anyone on the list has experience picking pedagogical
      >> programming examples appropriate for twelve-year-olds' attention spans.
      >> thanks,
      >>
      >> Bob
      >>[/color]
      > While it is not python per se, I suggest you have a look at GvR
      > (Guido van Robot) (The app is written in Python but is too complicated
      > for beginners). It is hosted on sourceforge (gvr.sourceforg e.net).
      > It is a very interesting way (imho) to learn about programming, in
      > a pythonic way.
      >
      > (somewhat shameless plug follows:)
      > A 'more advanced version' of GvR which uses the full Python syntax
      > is RUR-PLE (rur-ple.sourceforge .net). The version currently hosted
      > there does NOT work under Linux (untested on Mac).
      > It uses wxPython 2.4 and will not work with 2.5.
      > An updated release that will work under both Linux and Windows,
      > and under both wxPython 2.4 and 2.5 will come out very soon, I hope.
      >
      > I'm working on it :-) I have two kids (ages 11 and 13) and plan to use
      > rur-ple to teach them about programming. Note that, even though
      > I plan it to be suitable for motivated children (with some guidance),
      > the end product (to be finished in a year?) is planned to be suitable
      > for a complete first-year university computer science.
      >
      > Andre Roberge[/color]

      I started teaching my 11 year old first of all by doing silly stuff like -:
      for i in range(10):
      print "Silly me!"

      Moving on to more useful stuff like times tables (which they have to learn
      anyway).

      After times tables, I plan to work on a simple number guessing game where
      the computer picks a random number between 1 and 100 and asks the user to
      take a guess. This will help demonstrate many basic programming concepts.

      Not sure how to introduce graphics though as so much is relatively abstract.

      Adrian.

      Comment

      • Steve Holden

        #4
        Re: short programming projects for kids

        Adrian Casey wrote:
        [color=blue]
        > André Roberge wrote:
        >
        >[color=green]
        >>bobdc wrote:
        >>[color=darkred]
        >>>I will be teaching an "Introducti on to Programming" class to some
        >>>middle school aged children and will be using Python, obviously. Does
        >>>anyone have suggestions for simple little programs to create and
        >>>analyze with them after I get past turtle graphics?
        >>>
        >>>Turtle graphics will be plenty for the first session, and I will leave
        >>>time to ask them what they'd like to do in later sessions, but I was
        >>>curious if anyone on the list has experience picking pedagogical
        >>>programmin g examples appropriate for twelve-year-olds' attention spans.
        >>>thanks,
        >>>
        >>>Bob
        >>>[/color]
        >>
        >>While it is not python per se, I suggest you have a look at GvR
        >>(Guido van Robot) (The app is written in Python but is too complicated
        >>for beginners). It is hosted on sourceforge (gvr.sourceforg e.net).
        >>It is a very interesting way (imho) to learn about programming, in
        >>a pythonic way.
        >>
        >>(somewhat shameless plug follows:)
        >>A 'more advanced version' of GvR which uses the full Python syntax
        >>is RUR-PLE (rur-ple.sourceforge .net). The version currently hosted
        >>there does NOT work under Linux (untested on Mac).
        >>It uses wxPython 2.4 and will not work with 2.5.
        >>An updated release that will work under both Linux and Windows,
        >>and under both wxPython 2.4 and 2.5 will come out very soon, I hope.
        >>
        >>I'm working on it :-) I have two kids (ages 11 and 13) and plan to use
        >>rur-ple to teach them about programming. Note that, even though
        >>I plan it to be suitable for motivated children (with some guidance),
        >>the end product (to be finished in a year?) is planned to be suitable
        >>for a complete first-year university computer science.
        >>
        >>Andre Roberge[/color]
        >
        >
        > I started teaching my 11 year old first of all by doing silly stuff like -:
        > for i in range(10):
        > print "Silly me!"
        >
        > Moving on to more useful stuff like times tables (which they have to learn
        > anyway).
        >
        > After times tables, I plan to work on a simple number guessing game where
        > the computer picks a random number between 1 and 100 and asks the user to
        > take a guess. This will help demonstrate many basic programming concepts.
        >
        > Not sure how to introduce graphics though as so much is relatively abstract.
        >[/color]
        Have them type in guesses to make something hit a target that appears in
        a different position each time to introduce the notion of 2-D position,
        then you can talk about drawing lines between two positions, then the
        next thing you know they're writing algorithms to compute convex hulls
        (well, maybe not, but you probably get the idea).

        regards
        Steve
        --
        Steve Holden http://www.holdenweb.com/
        Python Web Programming http://pydish.holdenweb.com/
        Holden Web LLC +1 703 861 4237 +1 800 494 3119

        Comment

        • Duncan Booth

          #5
          Re: short programming projects for kids

          bobdc wrote:
          [color=blue]
          > I will be teaching an "Introducti on to Programming" class to some
          > middle school aged children and will be using Python, obviously. Does
          > anyone have suggestions for simple little programs to create and
          > analyze with them after I get past turtle graphics?
          >
          > Turtle graphics will be plenty for the first session, and I will leave
          > time to ask them what they'd like to do in later sessions, but I was
          > curious if anyone on the list has experience picking pedagogical
          > programming examples appropriate for twelve-year-olds' attention spans.
          > thanks,
          >[/color]
          Have you looked at http://www.livewires.org.uk/python/ ?

          Comment

          • zombiehunter@gmail.com

            #6
            Re: short programming projects for kids

            I was just about to suggest Livewires. I'm a programming newb (35 yrs
            old ) haha- and I'm finding the lIvewires course pretty helpful, even
            though it's geared for teens. I suppose my brain works on that
            functional level. :) And a book that's great for beginner's (know you
            probably don't want to buy books but just wanted to throw this info out
            there in case it helps somehow) is Python Programming for the Absolute
            Beginner by Michael Dawson. I'm working through that too and it's
            wonderful. It had many fairly simple to implement programs (lots of
            them simple games) that build on each other in a very easily
            comprehended, step-by-step manner.
            Hope htis helps-

            Comment

            • bobdc

              #7
              Re: short programming projects for kids

              Thanks André, Adrian, Steve, Duncan, and zombiehunter for the
              excellent suggestions.

              Bob

              Comment

              Working...