TUTORIAL


vinaykhatri
Vinay Khatri 13 September, 2020

SQL Transaction

If there is a group of SQL commands performed on a database to manipulate the stored data, then all…

vinaykhatri
Vinay Khatri 6 September, 2020

How to Find Length of List in Python?

A Python list can contain heterogeneous elements in sequential order. Unlike other programming-lang…

vinaykhatri
Vinay Khatri 6 September, 2020

How to Reverse a String in Python? [5 Ways]

Like a list reverse() method, we do not have a reverse method for Python strings. But we can use so…

vinaykhatri
Vinay Khatri 6 September, 2020

How to Remove an Element From a List in Python? - Python List remove()

A Python list can contain multiple elements in sequential order, and each element has a unique inde…

vinaykhatri
Vinay Khatri 6 September, 2020

Python String Concatenation With Examples

Unlike other programming languages, in Python, we do not represent the string as an array of charac…

vinaykhatri
Vinay Khatri 6 September, 2020

Python Lowercase Method with Examples

In Python, a string object has many built-in methods which can also help in manipulating the case o…

vinaykhatri
Vinay Khatri 6 September, 2020

How to Convert Python String to int?

In Python, integer numbers are represented as the whole numbers with no fraction value. In Python u…

vinaykhatri
Vinay Khatri 6 September, 2020

Python not equal operator With Example

The "not equal to" operator is a comparison operator, and it returns a boolean value ( Tr…

vinaykhatri
Vinay Khatri 6 September, 2020

Python Strip() Method With Examples

In Python, the string data type supports a strip() method which is capable of removing the initial …

vinaykhatri
Vinay Khatri 6 September, 2020

Python Reverse List with Examples

A Python list can contain multiple items, and each piece is mapped using index values. The index va…

vinaykhatri
Vinay Khatri 6 September, 2020

SQL SELECT Database, USE Statement

If we have multiple Databases in our SQL schema then in order to operate on specific database first…

vinaykhatri
Vinay Khatri 3 September, 2020

SQL Expression

When we use two or more than two combinations of values, operators and SQL functions, then it is co…