Vijaykrishna Ram

Vijaykrishna Ram

Python String Casefold

Python String casefold()

The Python String casefold() method returns a case folded string, and we use this to remove all case distinctions in a string. Let’s look at what this means. Using the Python String casefold() method This belongs to the String class,…

Python Strip From String

Strip from a String in Python

Let’s take a look at how we can strip from a string in Python. Python provides us with different ways to remove trailing characters like newlines, spaces, and tabs from a Python String. This is called stripping from a String.…

Python Time Sleep

Using the Python time.sleep() Method

In this tutorial, we’ll be going over the Python time.sleep() method. In our previous tutorial, we looked at the time module, which is the default utility library for performing various timing tasks. The Python time.sleep() method is used to halt…

Python Sqlite

Python SQLite Module

Python SQLite Module is a lightweight library that provides an easy way to do the often difficult task of SQL type Database Management. This, unlike other Database Systems, does not require a dedicated server process This combines the easy to…