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

I know PHP a little. But Python is totally new for me. I only know it's something "similar", right? Or wrong? What are the differences I should know?

share|improve this question

4 Answers

up vote 11 down vote accepted

Here it is a link to the python wiki, it says which are the main differences and the common things:

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

share|improve this answer

PHP is a language that's made for the web. You can make GTK and CLI applications with PHP, but it's mainly used for websites. Python is used for a lot of stuff like websites, webservers, game frameworks, desktop and CLI application, IDEs and a lot more.

There's also a huge difference in the syntax. PHP has a syntax that's like C with curly braces for loops and whitespace is ignored. Python doesn't have curly braces, instead the level of indention of blocks of code are important.

Both languages are easy to learn. It just depends on what you want to do.

share|improve this answer

One main difference is, that code formatting (indentation) influences your codes behaviour in Python. PHP is not interested in how you format your code.

Furthermore PHP may be able to produce applications outside of webservers and CLIs but is definitely aimed at those two environments while Python is more "all purpose".

share|improve this answer
4  
Indentation is not one of the major differences. It's only skin-deep. – Jason Orendorff Dec 20 '09 at 15:58

If you decide to learn Python,

http://www.youtube.com/watch?v=k6U-i4gXkLM

and master it, you will be able to do this:

http://xkcd.com/353/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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