I'm new here, so forgive me if I wrote something wrong here... For which-all fields can Python be used for and to which extent? Can Python be used to make softwares(with GUI, for different platforms ) and web apps?

UPDATE*- I want to make simple software ( for my works and enjoyment and a little of web dev. )

I'm asking this question as I'm confused between Ruby, ASP, PHP and Python for Web Development and want to know if Python should be better to learn before C++ ( although I can understand C++ learning ) * Which are good IDEs and web frameworks for Python? Do help me and refer a few free ebooks and web-pages to learn. And which one is better?2.xx or 3.xx?

Thanks in advance! John

link|improve this question
1  
This question has a scope like the "meaning of life" :-P – Oben Sonne Jul 21 '11 at 12:41
Try this on programmers and you might get a better response. – Nix Jul 21 '11 at 12:42
@Nix what do you mean sir? – John Jul 21 '11 at 12:43
1  
Programmers: programmers.stackexchange.com – Oben Sonne Jul 21 '11 at 12:44
1  
It's used for all sorts of things. There are lots of questions about books. 2 vs 3 searching before asking can get you good results. – nmichaels Jul 21 '11 at 12:45
show 3 more comments
feedback

closed as not a real question by sje397, Kerrek SB, nmichaels, Nix, cularis Jul 21 '11 at 12:45

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

This type of question is a bit of a hornets nest since your mileage may vary and it is largely dependent on opinion. But I'll show a few usecases.

You can use Python for near all. The tutorial of Python is a good start.

You could start out by learning Python 3.x but be advised that near all real-world stuff is still in Python 2. Read this article to learn more about what to pick.

Python is used for web development through a lot of frameworks like Django, Pylons, Flask. You can use Python to make GUIs with Qt, GTK, Tk and assorted others.

If you want to start web developing I suggest to read the tutorial first and then go with Django as your general introduction.

As for IDEs, whatever floats your boat, you can go small from vim to huge with pydev.

Some examples of bigger applications and companies using Python: YouTube, Civilization (game series), Google, Dropbox. A more comprehensive list is found on the Python wiki.

link|improve this answer
1  
and for software development for small scale apps? – John Jul 21 '11 at 12:49
2  
A million smaller opensource projects and small scale websites are written in Python. From simple command line applications to full scale networking libraries. From homegrown websites to multi-million hit websites :-) Just search for a few on Bitbucket or Github to see more! – ikanobori Jul 21 '11 at 12:52
@John IMO it's better for small scale apps than for big scale apps since the disadvantages of dynamic typing become more pronounced in big programs. But language is mainly a matter of preference. – CodeInChaos Jul 21 '11 at 12:54
feedback

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