I have always admired technology, and of course it is the same for technology companies. Google is ideal for many people. Although I have never wanted to go in, I have been paying attention to it.
Many of Google's recruitment requirements require python coding experience. I'm curious about this language. I believe that Google must pay so much attention to it.
Let's talk about the advantages of Python.
Python is much more elegant than Perl in the same scripting language. Although there are not as many Python class libraries as Perl, it is quite complete. It is enough. Mature large item
The Zope and twisted are all developed by it. We can see that it meets our requirements. There is also a high opening efficiency, and a strong logical connection between each module. For execution efficiency, this is not
Python strengths, but we have alternative solutions. For example, the pickle module used for executing file storage is slow, but we can also useC LanguageWritten cpickle module,
Its speed has increased by 1000 times. So in the continuous development of Python, it will become more and more perfect.
What I like more is Python's concise syntax.
Most of the logic languages we write in C # are written
If (...)
{...}
Else if (...)
{...}
Else
{...}
In python, the syntax is
If ...:
...
Elif ...:
...
Else:
...
However, the python format is strictly required. If you do not want to indent it, an error is returned. Now I recommend a book, concise Python tutorial, to interested friends.
Http://sebug.net/paper/python/