Introduction

 Python is a widely used general-purpose, high level programming language.It was designed with an emphasis on code readability, and its syntax allows programmers to express their concepts in fewer lines of code.

Python is a programming language that lets you work quickly and integrate systems more efficiently.

LANGUAGE FEATURES

  • Interpreted
    • There are no separate compilation and execution steps like C and C++.
    • Directly run the program from the source code.
    • Internally, Python converts the source code into an intermediate form called bytecodes which is then translated into native language of specific computer to run it.
    • No need to worry about linking and loading with libraries, etc.
  • Platform Independent
    • Python programs can be developed and executed on multiple operating system platforms.
    • Python can be used on Linux, Windows, Macintosh, Solaris and many more.
  • Free and Open Source; Redistributable
  • High-level Language
    • In Python, no need to take care about low-level details such as managing the memory used by the program.
  • Simple
    • Closer to English language;Easy to Learn
    • More emphasis on the solution to the problem rather than the syntax
  • Embeddable
    • Python can be used within C/C++ program to give scripting capabilities for the program’s users.
  • Robust:
    • Exceptional handling features
    • Memory management techniques in built
  • Rich Library Support
    • The Python Standard Library is very vast.\
    • Besides the standard library, there are various other high-quality libraries such as the Python Imaging Library which is an amazingly simple image manipulation library.
  • Python Application:
  • Web Development
  • Game Development
  • Machine Learning and Artificial Intelligence
  • Data Science and Data Visualization
  • Data Engineering
  • Automation
  • Desktop GUI
  • Web Scraping Applications
  • Business Applications
  • Audio and Video Applications
  • CAD Applications
  • Embedded Applications

In this Playlist, I will cover below mentioned Python Application:

  • Python Basic
  • Data Engineering
  • Automation
  • Data Science and Data Visualization
  • Machine Learning and Artificial Intelligence


Python Installation: 

Install on Window

Step 1: https://www.python.org
Step 2: Select the Python version to download.
Step 3: Click the download button to download Exe File
Step 4: After downloading, Click on Install Now

Verify The Python Installation:

Open Command Prompt, Type python - - version

Open Python Idle Interpreter to work on python, or can use jupyter or Spyder, I will use jupyter in this tutorial.