Category Python

Python Tokens | Character Set Used in Python

Tokens used in Python

Tokens are the various elements in the Python program that are identified by Python interpreter. A token is the smallest individual unit, or element in the Python program, which is identified by interpreter. They are building blocks of the source…

Memory Management in Python

Memory management in Python

Memory management in Python is the process by which the computer system reserves a part or complete section of memory for the process and execution of programs. It allows the application programs to read and write data. We know that…

What is Indentation in Python

An example of Line indentation in Python

Indentation is one of the most significant features of Python. It refers to white spaces to denote the beginning of a block of code. In other programming languages like Java, developers use indentation to keep their code neat and to…

Basic Python Syntax | Python Structure Program

Basic Python syntax structure

Python is free, open-source, high-level, object-oriented, and powerful programming language. Every programming language in the real world follows some set of rules that are needed to write an error free program. In order to write any Python program, we must…

List of Reserved Keywords in Python

Keywords in Python are unique reserved words that Python reserves for defining the syntax and structure of Python language. We can’t use these keywords as an ordinary identifier in a Python program while naming variables, functions, objects, classes, and similar…