vote up 14 vote down star
4

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?

flag

should be community wiki. – SilentGhost Jul 16 at 11:13

12 Answers

vote up 35 vote down check

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
link|flag
But can it make toast? :) – Kev Oct 15 '08 at 6:42
2  
from kitchen import Toaster toaster = Toaster() toaster.toast() – Adam J. Forster Oct 15 '08 at 8:10
might want to change pythong to python. I type that a lot too >.> – The.Anti.9 Oct 15 '08 at 8:20
Thought I was the only one fixated with pythong – ayaz Oct 15 '08 at 8:25
2  
don't forget the antigravity module :) – Jeremy Michael Cantrell Oct 15 '08 at 13:08
show 4 more comments
vote up 0 vote down

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.

link|flag
vote up 3 vote down

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

link|flag
vote up 1 vote down
  • 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
link|flag
vote up 5 vote down

It makes programming fun!

link|flag
vote up 2 vote down

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.

link|flag
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 at 11:26
Thanks, I updated to reflect that. – Andrew Cox Jul 16 at 12:21
vote up 1 vote down

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.

link|flag
vote up 1 vote down

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.

link|flag
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 at 12:59
vote up 0 vote down

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).

link|flag
vote up 7 vote down

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

link|flag
vote up 8 vote down

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).

link|flag
vote up 13 vote down

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.

link|flag

Your Answer

Get an OpenID
or

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