What is PYTHON and Why Learn Python

PYTHON

Python is an object­oriented scripting language that was released publicly in 1991. It was developed by Guido van Rossum of the National Research Institute for Mathematics and Computer Science in Amsterdam. Python has rapidly become one of the world’s most popular programming languages. It’s now particularly popular for educational and scientific computing, and it recently surpassed the programming language R as the most popular data­science programming language. Here are some reasons why Python is popular and everyone should consider learning it:

  • It’s open source, free and widely available with a massive open­source community.
  • It’s easier to learn than languages like C, C++, C# and Java, enabling novices and professional developers to get up to speed quickly.
  • It’s easier to read than many other popular programming languages.
  • It’s widely used in education.
  1. https://www.kdnuggets.com/2017/08/python­-over-takes­-r-­leader-analytics-­data­science.html.
  2. https://www.r­-bloggers.com/data-­science­job­-report-­2017­-r­-passess-as-­but-­python­leaves­-them-­both­-behind/.
  3. https://www.oreilly.com/ideas/5­-things-­to­watch-­in-­python-­in-­2017.
  4. https://dbader.org/blog/why-­learn­-python.
  5. https://simpleprogrammer.com/2017/01/18/7­-reasons­-why-­you­-should-learn-­python/.

Tollervey, N., Python in Education: Teach, Learn, Program (O’Reilly Media, Inc., 2015).

  • It enhances developer productivity with extensive standard libraries and third­party open­source libraries, so programmers can write code faster and perform complex tasks with minimal code. We’ll say more about this in Section 1.4.
  • There are massive numbers of free open­source Python applications.
  • It’s popular in web development (e.g., Django, Flask).
  • It supports popular programming paradigms—procedural, functional­-style and object-oriented. We’ll begin introducing functional­-style programming features in Chapter 4 and use them in subsequent chapters.
https://en.wikipedia.org/wiki/Python_(programming_language).

  • It simplifies concurrent programming—with asyncio and async/await, you’re able to write single­-threaded concurrent code , greatly simplifying the inherently complex processes of writing, debugging and maintaining that code.
https://docs.python.org/3/library/asyncio.html.

https://www.oreilly.com/ideas/5­-things-­to­watch­-in-­python­-in-2017.

  • There are lots of capabilities for enhancing Python performance.
  • It’s used to build anything from simple scripts to complex apps with massive numbers of users, such as Dropbox, YouTube, Reddit, Instagram and Quora.

https://www.hartmannsoftware.com/Blog/Articles_from_Software_Fans/Most-Famous­Software-­Programs­-Written-­in­-Python.

  • It’s popular in artificial intelligence, which is enjoying explosive growth, in part because of its special relationship with data science.
  • It’s widely used in the financial community.

Kolanovic, M. and R. Krishnamachari, Big Data and AI Strategies: Machine Learning and Alternative Data Approach to Investing (J.P. Morgan, 2017).

  • There’s an extensive job market for Python programmers across many disciplines, especially in data­science­­oriented positions, and Python jobs are among the highest paid of all programming jobs.

https://www.infoworld.com/article/3170838/developer/get­-paid­-10­-programming­languages-­to-­learn-­in­-2017.html.

https://medium.com/@ChallengeRocket/top­10-­of-­programming-languages-­with­-the­highest-­salaries­-in-­2017-­4390f468256e.

  • R is a popular open­source programming language for statistical applications and visualization. Python and R are the two most widely data­science languages.

Anaconda Python Distribution

We use the Anaconda Python distribution because it’s easy to install on Windows, macOS and Linux and supports the latest versions of Python, the IPython interpreter (introduced in Section 1.5.1) and Jupyter Notebooks (introduced in Section 1.5.3). Anaconda also includes other software packages and libraries commonly used in Python programming and data science, allowing you to focus on Python and data science, rather than software installation issues. The IPython interpreter has features that help you explore, discover and experiment with Python, the Python Standard Library and the extensive set of third­party libraries.

https://ipython.org/.

Zen of Python

We adhere to Tim Peters’ The Zen of Python, which summarizes Python creator Guido van Rossum’s design principles for the language. This list can be viewed in IPython with the command import this. The Zen of Python is defined in Python Enhancement Proposal (PEP) 20. “A PEP is a design document providing information to the Python community, or describing a new feature for Python or its processes or environment.”

https://www.python.org/dev/peps/pep­0001/.

*

Post a Comment (0)
Previous Post Next Post