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

I currently program internet applications in php and mysql. I would like to broaden my horizons to new languages. What kind of things can be done with Python?

What kind of applications can be written on it other than internet apps? Can you write Windows/Linux programs in Python?

share|improve this question
It makes programming fun! – monkut Oct 15 '08 at 9:15
should be community wiki. – SilentGhost Jul 16 '09 at 11:13
agreed. And proof that if you search long enough, you'll find your answer at SO. – canadiancreed Dec 1 '10 at 4:25

closed as not constructive by dasblinkenlight, Daniel Fischer, Andy Hayden, CloudyMarble, gnat Feb 13 at 6:38

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

11 Answers

up vote 62 down vote accepted

As for what tasks can be done:

  • Python is extremely fun to develop in.
  • Everything can be done with Python.
  • If something can't be done, you can create an extension for it.
  • Everything can not only be done, but it can be done fast. For example a program that takes you weeks in C++ might take you a day in Python.
  • Great for prototyping, and even for usage in a commercial setting.

As for language features:

  • Scripting language
  • Multi-paradigms (object oriented, imperative, functional)
  • Dynamic type system
  • Automatic memory management
  • Links to other dynamic languages
  • Embedding into other languages
  • Nice py2exe program that converts python scripts to executables for windows. Other platforms include it by default.
  • Strongly typed without static typing
  • Large standard library
  • Includes lists, dictionaries, sets, and much more as basic data types
  • Some implementations of python compile directly to machine code
  • It is actively being worked on
  • It has an antigravity module as noted by Jeremy Cantrell
  • ...

As for resources available:

  • Python is free to use
  • There are a ton of online resources and free tutorials
  • There are a ton of books on Python
  • There is a large community of developers available for help
share|improve this answer
9  
But can it make toast? :) – Kev Oct 15 '08 at 6:42
27  
from kitchen import Toaster toaster = Toaster() toaster.toast() – Adam J. Forster Oct 15 '08 at 8:10
1  
might want to change pythong to python. I type that a lot too >.> – The.Anti.9 Oct 15 '08 at 8:20
1  
Thought I was the only one fixated with pythong – ayaz Oct 15 '08 at 8:25
4  
don't forget the antigravity module :) – Jeremy Cantrell Oct 15 '08 at 13:08
show 8 more comments

For the same reason you would learn any language -- to experiment with and learn about new ways of programming. Python is powerful language, and makes use of idioms that are not possible in PHP like closures and callable parameters.

This advice applies to any language, especially those with styles that are foreign to you. Other good languages to learn, or at least play around with, are Haskell, Erlang, and Smalltalk.

share|improve this answer

For the same reason you would learn any language. "If the only tool you have is a hammer, every problem looks like a nail"

share|improve this answer
very nice analogy – Matthias Dec 24 '11 at 2:49
+1 for analogy! – justnS Jan 22 '12 at 21:05

Why should you learn Python?

  • Because it is a modern, elegant, highest level OO language
  • Because it is highly expressive, i.e., you will earn higher productivity
  • Because it comes with "batteries included" i.e. libraries for whatever you want
  • Because it is well documented and has a well-established community
  • Because it is simple to learn (and easy to read!) if you already know another OO language
  • Because it is relatively portable (that is, portable until you use system-specific features)
  • Because it is free and already installed on any modern Linux distribution (and also on Mac OS X and *BSD, I guess)

As for what can be done in Python: everything except extremely low-level things (i.e. kernels, drivers, programming a microcontroller). Also, you should not use Python directly for number crunching (it is far too slow for that), but you can wrap C or C++ number crunching libraries with Python modules (and it has already been done, the most notable examples being Numpy and Scipy).

share|improve this answer

This essay discusses someone's experiences first learning Python. It does a fairly good job of conveying the strengths of the language.

share|improve this answer

Python is a good step language, it is very simple but powerful at the same time, that allows you to move into it as quickly as you need. It also comes with "Batteries Included" which means that a whole lots of things can be done straight after installation, from text file processing to web servers. Also it is a great toolbox language, for the same reason. The current version is 2.6 but the plan is to move to 3.0 in the next couple of months.

If you are going to learn python a good book is Learning Python is a very good introduction to python. It covers 2.6 and what was known of 3.0 at the time of publishing.

share|improve this answer
Learning Python now covers 2.6 and what was known of 3.0 at the time of writing, so I think it's the most up to date learning material. – Bastien Léonard Jul 16 '09 at 11:26
Thanks, I updated to reflect that. – Andrew Cox Jul 16 '09 at 12:21
  • Because you can do far more things than PHP, for example cross platform desktop applications.
  • Because it is easy to learn and fun to code with.
  • Because it's a de-facto standard which ranks 6 in the TIOBE Index.
  • Because it is fast compared to some other scripting language
share|improve this answer

Can you write Windows/Linux programs in Python?

Yes you surely can write almost anything in python ( both linux and windows ). Right from web servers to web applications, from applets to programs, even drivers. Depends how deep you want to drill.

share|improve this answer
1  
plz, never write a driver in python, its just too slow to sit directly in the kernel... – Quonux Jul 14 '10 at 14:58

I don't have enough reputation on this user to comment, but in reply to Guido Garcia For the same reason you would learn any language. "If the only tool you have is a hammer, every problem looks like a nail"
True, but sometimes it's better to use a smaller hammer for smaller nails and a bigger hammer for a spike.

share|improve this answer
2  
He meant exactly that: you learn new languages to have a varied toolbox and not be reduced to shoehorn everything to the same treatment. – Adriano Varoli Piazza Feb 25 '09 at 12:59

It's very intuitive writing code in Python. I went the other way learning PHP after Python and it felt very weird, with funny function names and no name spacing.

share|improve this answer

It is possible to write portable desktop applications in Python. I've played a little with wxPython and it seems very nice (it has a native look-and-feel), but there are others you can try.

You already mentioned web programming, for which there are also working frameworks (Django, TurboGears).

share|improve this answer

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