Skip to content

python

python bitwise operators

Python Bitwise Operators

Python Bitwise operators works bit by bit. Python bitwise operators first convert integers into a binary number and then work on those binary number bit by bit . After the operation it converts the new binary number into a decimal number and returns the decimal number

python logical operators

Python Logical Operators

Python Logical operators are used to check various conditions .Logical operators always returns a boolean value . All the logical operators and their applications are shown below in the form of a table taking x and y as True and False .

python comparison operators

Python Comparison Operators

Python comparison operator compares any two variables or values. Comparison operators always returns a boolean value . All comparison operators and their application are shown below in the form of a table taking the value of x and y as 9 and 2 –

Python Arithmetic Operator

Python Arithmetic Operators

Python Arithmetic Operators are used to perform various mathematical processes (such as addition, division, multiplication, subtraction, etc.). All the arithmetic operators and their application are shown below in the form of a table taking the value of x and y as 9 and 2 –

Python Operators

Python Operators

Python operator is used to perform different operations between different variables and values. In the operation a+b, a and b is operand and + is operator .

Python Datatype

Python Datatypes

Datatype is the classification of data items. Depending on the type of data item, different operations can be performed on that data. So we need to have a thorough knowledge about datatype.

Python Variable

Python Variables

Python variable is a type of container in which a value is stored. When we create a variable, Python reserves memory depending on the type of the variable.

Python comment

Python Comments

Python Comments is the part of the Python program that is ignored by the Python interpreter during program execution.

visual studio code

Configuring Visual Studio Code

Visual Studio Code is an IDE (Integrated Development Environment) created by Microsoft which can be used on various platforms, such as -windows, linux and mac. Debugging, syntax highlighting, intelligent code completion, snippets, etc. are its notable features. We can also increase the functionality of VS Code by installing different extensions.

Install Latest Python in Windows

Install Latest Python

To install latest python in windows, first go to this link https://www.python.org/downloads/ and click on the “Download Python 3.9.6” box. 3.9.6 is the latest version of Python.

python

Latest Python Introduction

Python is a general purpose programming language created by Guido van Rossum in 1991 as a successor to the ABC language. Python 2.0 was released on October 16,2020 and Python 3.0 was released on December 3,2008.