Safa Mulani

Safa Mulani

An enthusiast in every forthcoming wonders!
Python Format() Function

Python format() function

Hello! In this article, we will be focusing on formatting string and values using Python format() function. Getting started with the Python format() function Python format() function is an in-built String function used for the purpose of formatting of strings.…

Python F String Function

Understanding Python f-string

String formatting in Python can be achieved using f-string. Thus, in this article, we will be focusing on the implementation of Python f-string. Necessity of f-string in Python Python f-string basically serves the purpose of string formatting. Before the emergence…

Python Bytearray() Function

Python bytearray() function

In this article, we will be having a look at one of the Python’s in-built function — Python bytearray() function. Understanding Python bytearray() function Python has in-built bytearray() method that creates an array of bytes and returns a bytearray object…

Python Divmod() Function

How to use the Python divmod() function

In this article, we will be unveiling the working and use of Python divmod() function in detail. 1. Python divmod() function Python has an in-built divmod() function which performs division and modulus operation on the two input values. The divmod()…

3 Ways To Trim A Python String

3 ways to trim a String in Python

What do you mean by trimming a string and how can you trim a string in Python? When you remove the whitespace around strings of text, in technical terms we call it trimming a string. In this article, we’ll cover…