Hacker News new | ask | show | jobs
by puente 5603 days ago
As absurd as it sounds is basically, in my opinion, because it is really easy to write it! That is to say is human readable! (E.g.: for element in list:)

Furthermore, is the time you spare with testing, compilation problems, etc!What it could take you 1 hour with C++, you dont need more than 10minutes with Python...

It has some problems though! Since it is interpreted it will never be as fast and performant as directly compiled code! Moreover, the lack of type definition can generate some unexpected problems during execution! For that I have a trick...I just put a letter in lower case before the variable to indicate the type to myself (s for string, i for integer, t for tuple, d for dictionaries, o for objects and so forth)

1 comments

are there any features within python making it much better than others while programming language specific soft (machine translation, dictionaries, etc)?