<br><br><div class="gmail_quote">On Thu, Dec 4, 2008 at 1:52 AM, Michael_D_G <span dir="ltr"><<a href="mailto:michaeldg@gmail.com">michaeldg@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<br>
I am a faculty member of a cs department. We currently teach C++ in<br>
our intro to programming course. I am teaching this class and it seems<br>
to me that we would be much better served teaching python in the intro<br>
course, C++ for Data structures, as we do now, and Java in object<br>
oriented programming, as we do now.<br>
Some of my colleagues agree with me but some still see python as a<br>
niche language and don't understand<br>
how we could teach anything beyond C, C++ or Java.<br>
<br>
I have looked at several interesting academic papers, on doing just<br>
this approach. I have also looked through the<br>
python web page to get examples of industry players using python in a<br>
non-trivial way. Yes, I know, Google,<br>
Microsoft, Sun, CIA website running on Plone, NOAA, NASA. If anyone<br>
has any recent articles,<br>
or if anyone on the list is at a fortune 500 company, how do I refute<br>
the notion that Python<br>
is a "marginal" language because according to TOBIE it only less than<br>
a  6% market share.<br>
<br>
-michael<br>
<font color="#888888">--<br>
<a href="http://mail.python.org/mailman/listinfo/python-list" target="_blank">http://mail.python.org/mailman/listinfo/python-list</a><br>
</font></blockquote></div><br>Well, I'm not in a fortune 500, but python _is_ currently paying my bills. There is a python job board, and a very active community around the language - I don't think it's hard to show that it's not a "niche" language anymore. Canonical,  as well as Google, O'reilly, Sun,  _and_ Microsoft  are  sponsors of the PSF. That's pretty much every major name in the software-development world right now. Niche languages aren't going to be getting that much support, from that many sources. Blender uses python. Bittorrent. Trac. Bazaar. Mercurial. But you know all this already.<br>
<br>It seems to me that it shouldn't even matter if it _is_ a niche language though, considering that you're trying to convince people to use it as an "intro to programming" language. I would think that an introductory programming course in this day and age should be more about general concepts than language bits, and python is pretty good at staying out of your way - other than Scheme, I can't think of a better language to use to demonstrate the process of programming on a high level. Showing some code to your colleagues, in both C++ and python, and showing how the python code is close to being psuedo-code, and easier to understand would help, as well as showing the interpreter (or ipython), and how that could be very useful in class.<br>
<br>It's intro to programming - the specific language should take a backseat to how easy it is to express ideas to the person with no programming experience in a clean manner, right? It seems to me that that's the point that your colleagues need to understand - being a good programmer (and, by association, being led down the path to being a good programmer) is more about understanding abstraction and how to break down a problem than what language is used, especially at the beginning. This was perhaps less true 10 years ago, when it was much more important to have a firm understanding of what's going on at a lower level to implement anything non-trivial, but these days there are plenty of useful things and learning that can be done with practically no knowledge of (for instance) machine architecture.<br>
<br>I know the above wasn't exactly what you were asking for, but I hope it wasn't useless.<br>