Safa Mulani

Safa Mulani

An enthusiast in every forthcoming wonders!
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…

Ways To Copy A Python List

Ways to Copy a List in Python

In this article, we will be understanding various techniques to copy a list in Python. Python List is a data structure to store and manipulate the data values. Technique 1: The extend() method to copy a list in Python Python…