How to Install Python 3 – Introduction & Installation

This is our first tutorial in Python 3, in this tutorial we are going to learn How to Install Python 3 , also we have a simple Introduction and we are going to talk about Installation process.

 

 

Also you can check More GUI Development Tutorials in the below link.

1: PyQt5 GUI Development Tutorials

2: TKinter GUI Development Tutorials

3: Pyside2 GUI Development Tutorials 

4: Kivy GUI Development Tutorials

 

 

 

 

Also you can watch the complete video training for this article

 

 

 

 

What is Python ? 

Python is one of those rare languages which can claim to be both simple and powerful. You
will find yourself pleasantly surprised to see how easy it is to concentrate on the solution to
the problem rather than the syntax and structure of the language you are programming in.

Python is an easy to learn, powerful programming language. It has efficient high-level
data structures and a simple but effective approach to object-oriented programming.
Python’s elegant syntax and dynamic typing, together with its interpreted nature, make
it an ideal language for scripting and rapid application development in many areas on
most platforms. also python is a cross platform programming language. it means that you can run python code on Windows, Linux and Mac OSX. and also one of the best thing about python is this that it has a very complete standard library, and you can use from these libraries. in addition to the python standard libraries , there are thousands of third party libraries that you can use. for example if you want to create a GUI (Graphical User Interface ) application , so for that you can use different libraries, like PyQt5, Kivy, Pyside2, wxPython or we can use TKinter, TKinter is a built in library in Python. or if you want to create a website than you can use Django or Flask libraries for web development .

 

 

 

Features of Python 

  • Simple: Python is a simple and minimalist language. Reading a good Python program feels almost
    like reading English, although very strict English! This pseudo-code nature of Python is one
    of its greatest strengths.
  • Easy to Learn: Python is extremely easy to get started with. Python has an extraordinarily
    simple syntax, as already mentioned.
  • Free & Open Source: Python is free, it means that you can freely distribute copies of this software, read its source code, make changes to it, and use pieces of it in new free programs.
  • High-level Language: When you write programs in Python, you never need to bother about the low-level details such as managing the memory used by your program, etc.
  • Interpreted: Python, does not need compilation to binary. You just run the program
    directly from the source code. Internally, Python converts the source code into an
    intermediate form called bytecodes and then translates this into the native language of your
    computer and then runs it.
  • Object Oriented: Python supports procedure-oriented programming as well as object-oriented programming. In procedure-oriented languages.

 

 

 

Installation on Windows

Visit Python Website  and download the latest version of Python,   The installation is just like any other Windows based software. also for more information you can check the video tutorial.

Note: Make sure you check option Add Python  to PATH.

 

Also you need to download Pycharm IDE, because we are going to use Pycharm IDE for our coding.

 

 

So now let’s create our first Hello World in python, open Pycharm IDE, create a new Python File and add this code.

 

 

 

If you run the code and you will receive this output.

 

 

 

 

 

Subscribe and Get Free Video Courses & Articles in your Email

 

Codeloop
Share via
Copy link
Powered by Social Snap
×