Skip to main content

Posts

Showing posts from March, 2018

Python

Why Python? 1. Python is free to use. 2. Python is very beginner-friendly. 3. Python is easy to program and read. 4. The syntax (words and structure) is extremely simple to read and follow, most of which can be understood even if you do not know any programming. 5. Similar to PERL, but with powerful typing and object-oriented features 6. Software Quality: python focus on readability, coherence and software quality in general which sets it apart from other languages in the scripting world. 7. Developer productivity: python code is typically only 30% to 60%  size of the equivalent C++ or  Java(all-time favorite).this means there is less code, less code write, less error, less to debug, less to memory requirement and less to maintain. 8. Program Portability: python program run unchanged on all major computer platforms.Cross-platform {windows, Mac OS, Linux and many more} 9. Support libraries: python comes with tons of prebuilt and portable functionality called...