HomeOur TeamContact
Introduction to python

Introduction to python

By Nicodemus Ngufuli
Published in Python
January 05, 2021
5 min read

Prelude

Programming languages such as C, Haskel and Clojure their focus is more on the funcional aspects of programming. Such languages concentrate more in writing programs using functions. In these languages, writing functions is easy but things tends to get hard when combining these funtions to create a complete software. In order to make programming easier, computer scientists came up with a new methodology and that is creating a computer program by mimicking real life entities. This led to the development of Object Oriented Programming.

Object Oriented Programming languages such a Java, C++ and .Net are based on classes and objects. Programmers started migrating from funcional programming languages such as C to Object Oriented Programming languages such as Java

Java

Programmers have to express their logic through classes and objects. This inturn results into creating lengthy source codes. Example, a simple program to calculate product of two numbers.

//Java program to find product of a number
class Product{
    public static void main(String[] args){
        int x, y;
        x = y = 30
        System.out.println("The product is: " + (x * y));
    }
}

Not in every scenerio do programmers have to create classes and this programming technique consumes time. If we were to write the above same code above in C which is a functional programming language, the code would be less lengthy as an example below.

#include <stdio.h>
void main(){
    int x, y;
    x = y = 30;
    printf("The product of the two numbers is: " + (x * y));
}

The two programs perform the same function but the program in C is less lengthy as compared to Java. But the problem arises when the C programmers want to utilize the Object Oriented Programming features which appears to be the setback of C, likewise Java developers wont have the benefit writing less lengthy code. To resolve these issues, Python turns out to be the solution.

Python

Python is a programming language that has both functional and object oriented features just like C and Java respectively. In python, the program to find the product of two numbers is as follows.

x = y = 30
print("The product of two numbers is: ",(x + y))

Python was developed by Guido Von Rossum in the year 1991 at the center of Mathematics and Computer Science under the Dutch Government management. At the time, Guido Von Rossum was developing system utilities using C where he had to interact with Bourne Shell which was based on Unix. The invention on Python came when he felt the necessity of developing a language to bridge the gap between C and Shell.

Why the name Python?

Guido Von Rossum gave his programming language a name Python after Monty Python’s Flying Circus and this is because he wanted a peculiar short unique name. Python was first released to the public on 20th February 1991.

Python is licenced as open source software, it’s source code can be accessed and modified as per developer’s project and anybody can download it from www.python.org.

Features of python

The following are the reasons as to why python has been gaining popularity in the programming community.

  1. Open source: Python can be freely downloaded, modified and used as per user or developers’s need. In shot there is no need to pay for Python software

  2. Platform independent: When Python code gets executed, it generates byte code which inturn can be run on any hardware or operating system. By using PVM(Python Virtual Machine) the byte code instructions can be ran on any computer system.

  3. High level language: As a high level language, python has been designed to be simple and easy to learn hence letting a programmer to focus more on business logic and not on the complexity of the syntax and semantics. In addition, Python uses English like words to make it even more simpler

  4. Dynamically typed: Python doesn’t require declaration of anything. As a dynamic programming language, anything can be changed at run-time that hasn’t been explicitly coded in the source code. Any assigned statement binds a name to an object having any data type. This means that an object can be re-assigned to a different object bearing different data-type.

  5. Portable: Python outputs the same result regardless of the computing machine. Python pgivees the same result to different computing machines sinnce it is platform independent. Once a python program has been written, it can run on any machine with the help on PVM(Python Virtual Machine). Conversely, Python has system dependent modules that are specific to a particluar operating system.

  6. Interpreted: After writing a python program, we compile its source code using a Python compiler to generate byte code or intermediate code. The byte code then executed by the Python Virtual Machine. The Python Virtual Machine has an interpreter than converts the byte code into machine code which can be understood by a processor.

  7. Extensible: Source codes written in other programming languages such as C++ or C can be integrated into Python the executed using PVM(Python Vitual Machine) This can also be seen in other flavours of pythos such as:

  • Iron Python: Integration of .Net code into Python
  • Jython: Integration of Java code into Python code
  1. Embeddable: This on the other hand, involves integrating Python code into a program written in C, C++,Delphi or Java.

  2. Scalable: A program written in Python can be transfered to another platform, system or infrastructure and take full control of that system or infrastructure.

  3. Large library and useful modules: Python has a large number of pre-build modules which are available for developers to take advantage of such as:

  • argparse is a command-line parsing library.
  • CherryPy is an object oriented HTTP framework.
  • cryptography provides cryptographic feature to programmers.
  • whoosh Is a text indexing, search and spell checking library.
  • Fiona reads and writes big data files.
  • Sphinx is a library for Generating documentation.
  • scipy is library for scientific and engineering calculations.
  • pyquery is a jquery like library for Python.
  • pillow is an imaging library for Python.
  • matplotlib is a package for drawing 2D graphs and electronic circuits.
  • pandas is a package for analysing data structures, time series and analytics.
  • mysql-connector-pythonis is driver used to connect python based application to MYSQL database.
  • numpy is a package used for processing single and multidimensional arrays.
  1. Procedure and object oriented: Python is both a functinal and object oriented programming language. We’ll get to understand more about Object Oriented Programming feature of Python in the topics ahead.

Python Virtual Machine.

Computer understands machine code instructions comprised on 0’s and 1’s, for that case we are bound to convert our source code written to whatever programming language into machine code(0’s and 1’s) for execution. In order to convert our source code into machine code we need a compiler. However, the Python compiler converts the source code into byte code first before being converted into machine code.

What is a byte code?

A byte code is a set of instructions created by Python developers to represent all types of computer instructions, each byte code instruction has a size of 1 byte(8 binary digits). These code instructions can be viewed in .pyc file.

What is the purpose of PVM(Python Virtual Machine) ? The purpose of PVM is to convert the byte code instructions into machine code.

Frozen Binaries

After software developers design, create, test and supply a software to the end user, there are various ways on which the end user executes the software.

  • First way: To provide the end user a .pyc file, then he/she installs the PVM then run the byte code inside the .pyc file.
  • The other way: To provide the end users a .pyc file, PVM and the required Python Library. Here the PVM, .pyc and the Python Library are converted into a single executable file where the user can easily execute the program by clicking it. The technique of converting Python software into is called frozen binaries.

Memory management in Python.

In programming languages such as C and C++ programmers have to allocate and de-allocate memory dynamically in run-time. They often use functions such as malloc() and free() to allocate and de-allocate memory respectively. In Python, memory allocation and de-allocation are done during run-time automatically by the Python Virtual Machine. Therefore the programmer doesn’t have to allocate memory when creating an object or de-allocate memory when deleting an object.


Tags

#python#programming
Nicodemus Ngufuli

Nicodemus Ngufuli

Software Engineer and content editor at UltimaxDev

I am a Full-Stack Software engineer, currently learning advaced java as a hobby

Expertise

NodeJS
ExpressJS
React
Laravel

Social Media

instagramtwitterwebsite

Related Posts

Python data types
Python
Data types in Python.
February 03, 2021
4 min
© 2023, All Rights Reserved.

Quick Links

Advertise with usAbout UsContact Us

Social Media