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?
|
Here it is a link to the python wiki, it says which are the main differences and the common things: |
|||
|
|
|
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. |
|||
|
|
|
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". |
|||||
|
|
If you decide to learn Python, http://www.youtube.com/watch?v=k6U-i4gXkLM and master it, you will be able to do this: |
|||
|
|