show/hide this revision's text 2 Updated for Python 3

I think Python's your best bet. It's the language we start with in the computer science courses where I teach. Python has a number of advantages, particularly for the beginner programmer:

  • print "Hello World"

    • print("Hello World") # updated for Python 3
    • Very simple syntax without excess punctuation.
    • An intuitive concept of variables as names rather than representations of memory storage locations.
    • Extremely easy file access (esp. when compared to Java).
    • Straightforward built-in list and dictionary types that work the way you'd expect.
    • Transitions into an object-oriented and/or functional language as soon as the student is ready.

    Sure, it doesn't have pointers like C, and closures are slightly more wordy than in Ruby, but unless you're going on to a CS degree, these topics aren't very interesting anyway.

    Post Made Community Wiki by Community
show/hide this revision's text 1

I think Python's your best bet. It's the language we start with in the computer science courses where I teach. Python has a number of advantages, particularly for the beginner programmer:

  • print "Hello World"
  • Very simple syntax without excess punctuation.
  • An intuitive concept of variables as names rather than representations of memory storage locations.
  • Extremely easy file access (esp. when compared to Java).
  • Straightforward built-in list and dictionary types that work the way you'd expect.
  • Transitions into an object-oriented and/or functional language as soon as the student is ready.

Sure, it doesn't have pointers like C, and closures are slightly more wordy than in Ruby, but unless you're going on to a CS degree, these topics aren't very interesting anyway.