Python Basic Tutorials

Python is a high level general purpose programming language which has a clear/easy learning curve. Python programming language is massively used in various domains like Artificial Intelligence, Data Science, Web Development, Utilities Tools and Scripts and many more

Python is a Programming language, and the default Python we use is written in C programming language which is also referred to as CPython (Python implementation in C). There are various implementation of Python Programming language i.e Jython(in JAVA), Skulpt(in JS) e.t.c

To make everything easy: We refer CPython as Python

Python Operators Overview

Basically, operators are the symbols that are used to perform any particular operation between two or more operands. Operators are mandatory for any mathematical or logical operations.

Example1:
    
>>> 2+5
    7
    

Here in the above example, 2 and 5 operands and the '+' symbol is an operator.

Example12:
    
>>> 2-5
    -3
>>> a=1 # a is assigned the value 1
>>> print(a)
    1