Built in Object Types in Python

Built in Object Types in Python ▪️ All programming languages support a number of built-in variable types. These are the building blocks used for all the other variable types available within the language. ▪️ By combining or extending the basic variable, we can create some… Read More

OPERATORS IN PYTHON

OPERATORS IN PYTHON Operator: It is defined as a symbol which is responsible for a particular operation between two operands. Python supports different types of operators: 1. Arithmetic Operators 2. Assignment Operators 3. Logical Operators 4. Comparison Operators 5. Bitwise Operators 6. Identity Operators 7.… Read More

String: Python

String: ⦁ It is one of the built-in data structures in python. ⦁ String is a group of one or more characters which are enclosed in between single, double, triple quotes. ⦁ Strings can contain symbols, letters, numbers and special characters. ⦁ Strings are immutable… Read More

Dictionary – Python

Dictionary ▪️ Dictionary is the inbuilt data type in python which organizes data in a collection of key-value pairs, where each key is unique and maps to a specific value. ▪️ Each element in the dictionary is a key–value pair and one individual key value… Read More

LOOPING IN PYTHON

LOOPING IN PYTHON Loop: A loop is a control flow structure that allows a set of statements that will be executed repeatedly until a certain condition is met. Loops are used to automate repetitive tasks, to iterate over a data structure. Python language support two… Read More

Tuples – PYTHON

Tuples Tuple: ➔ A tuple is an inbuilt data type which is an ordered, immutable and lightweight collection of elements in python. ➔ The term immutable means once the tuple is created you can’t modify the size or the elements which are present in the… Read More

Variables in Python

Variables in Python Identifiers: An identifier is a name given to the entities in a program such as variables, classes, functions and all the other objects in python. ▪️ Identifiers are case sensitive. ▪️ There is no length restriction for the identifiers, but you have… Read More

Python Script to make connection for Oracle databases.

Python Script to make connection for Oracle databases. Hello Folks, This article will explain you about installation cx_Oracle module and basic python script to make connection to Oracle databases. Check the Python Version: 

Install oracle package cx-Oracle: cx_Oracle is a Python extension module that… Read More

SET DATA STRUCTURE

SET DATA STRUCTURE ▪️ A Python Set is the unordered and unique collection of the data. ▪️ Sets can contain elements of different Data Types Like int, string, Tuple, etc. but cannot contain List, sets, dictionaries. ▪️ Set data structure is used when you want… Read More