Course Content
What is Python
Python is a dynamically typed, General Purpose Programming Language that supports an object-oriented programming approach as well as a functional programming approach. Python is also an interpreted and high-level programming language. It was created by Guido Van Rossum in 1989
0/1
Starting Python:
Open Python IDE or any other text editor of your preferred choice. Let’s understand python code execution with the simplest print statement. Type the following in the IDE: print("Hello World !!!") Now save the file with a .py extension and Run it. You will get the following output: Hello World !!!
0/1
Python Programming language
About Lesson
  1. Visit the official python website: https://www.python.org/
  2. Download the executable file based on your Operating System and version specifications.
  3. Run the executable file and complete the installation process.

Version:

After installation check the version of python by typing following command: ‘python –version’.