Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My Google-fu may be lacking, but I couldn't find many universities/colleges that teach Python programming. Which ones do?

I don't care if it's a community college or MIT - all suggestions would be helpful.

share|improve this question
Not many. As far as I know, most universities are going to focus on the C/C++/Java and programming concepts. After that the language is just a tool. – Paolo Bergantino Feb 12 '09 at 21:02
Why does it matter? If you want to learn Python, pick up a book or read tutorials online. It's not that hard. – Kyle Cronin Feb 12 '09 at 21:05
A beginner my feel overwhelmed if they are trying to learn their first programming language. I would have rather taken a course in it when I first started CS. Now I'm comfortable learning it on my own. – Notorious2tall Feb 12 '09 at 21:07
Did you really try googling, the page in John T's answer seems hard to miss: google.com/search?q=university+python ;) – Jonik Feb 12 '09 at 21:09
True. The difficulty with your first language is that you're learning both the language and how to program at the same time. – Kyle Cronin Feb 12 '09 at 21:10

closed as off topic by Bill the Lizard Oct 10 '12 at 20:15

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

10 Answers

up vote 22 down vote accepted

http://wiki.python.org/moin/SchoolsUsingPython

share|improve this answer
2  
Nice, just added my university to that list – MahlerFive Feb 22 '09 at 8:28

Going for a university to learn a specific programming language is a waste. You can get much more from a degree than learning C/Java/whatever, and learning a specific language shouldn't take a lot of time, given enough motivation. Also, after learning a reasonable set of languages, picking up another one is relatively easy and fast. Don't pick an university or a degree based on which programming languages it'll "teach" you.

share|improve this answer
2  
Agree, but which programming languages is a university teaching can give you an idea of other aspects like innovation, how open-source friendly is, and things like that. I won't even consider a university that teaches intro to programming in basic and web development in .Net, for example – Sam Feb 13 '09 at 12:55
2  
I'd argue that teaching intro to programming in BASIC would be a damn good idea, it would get people to focus on algorithms rather than syntax errors... but that aside, who cares. Computer Science concepts transcend language boundaries. – Bob Somers Feb 22 '09 at 5:41
@Bob - Given that BASIC encourages use of GOTO, I'm not so sure. – Charles Duffy Feb 22 '09 at 8:14

MIT has an online version of its January term course 6.189 A gentle introduction to programming using python with some excellent introductory material. And for completeness, at least several of the full-semester courses, 6.00 Intro to Computer Science and Programming included, use python.

share|improve this answer

At my Alma mater UC Davis, the Computer Science department has offered ECS 145: Scripting Languages and Their Applications.

Excerpt:

We will focus on the following languages:

  • Python: We will spend most of our time on this language, for its clarity and elegance, and due to its popularity. (E.g. Python is big at Google.)
  • Perl: I don’t like Perl, but it is quite widely used, so we have to spend some time on it. It’s very easy to learn after you know Python.
  • Ruby: This actually is very similar to Python. It’s become famous because of the Ruby on Rails Web development system.
  • R: Some of you may know this as a statistical language, but it is more general than that, as a data manipulation and graphical analysis tool. (We will not do much with its statistical side.) It is definitely a scripting language, and includes some Python-like features (in some cases out-Pythoning Python).
share|improve this answer

My alma mater switched from teaching Java (C++ in my day) to Python because they found the overhead of learning OOP and Java to be too much. When you're really trying to teach OOP, you don't want to have too much of the language getting in the way.

share|improve this answer

Lappeenranta university of technology. Lappeenranta is in Finland, near the Russian border.

share|improve this answer
Good to see that. When I started 1998 it was only C for beginners. Or if you were studying Chemistry it was Fortran! – Petteri Hietavirta Mar 25 '09 at 12:31

The best way to learn a language is to try writing something (vaguely) useful in it. Be prepared to perhaps throw away your first attempts. But then again maybe not if you follow Markus Frind's example.

I've been reading though the Natural Language Processing book at nltk.org, the early chapters cover a surprising amount of basic Python. I've kinda been skipping most it, but much is quite useful in showing practical use of Python (covers list comprehensions, etc.)

share|improve this answer

They do at my alma mater. However, I don't think the online materials would be of much use to you, since you probably don't speak or read Croatian. (if you do, I'll send you a link)

share|improve this answer

Define "teach Python". Most universities teach a spread of languages - for example, having just finished two years of a Computing degree here at the University of Edinburgh, and heading for my third year, I have so far touched on C, C++, Java, Haskell, Assembly, Prolog... and, yes, Python.

Don't go to University to learn a specific language. University is usually about learning the theory behind programming. If you want to learn a language, then think of something to do with it and go do that. But, if you are about to enter University level education, then don't skip out on a degree. Theory is important.

share|improve this answer

I attend here at UBC and we teach intro programming with DrRacket which is practically a prettier version of scheme. We then offer a 1 credit python course for NON-computer science majors. As the expectation is they teach us a lot of very key concepts and skills, and a strong understanding of programming in DrRacket and we can easily switch to python.

This is a link to the free online textbook for it. http://docs.racket-lang.org/teachpack/index.html Our course pulls from it but its highly developed. (After all its taught by Gregor Kiczales, the father of AOP)

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.