Docstrings | What Are The Most Common Python Docstring Formats?

In this post, we will learn more about the most common Python docstrings formats which it is used for documenting the functions, classes, and modules in python, Which are defined in triple quotes which say string enclose and provide critical information about how to see the code. Docstring As there are a number of formats … Read more

How To Print Numbers Using Commas As Thousands Separators?

In this post, we will learn more about How to print a Numbers using commas as thousands of separators where we can use the format method along with “{:,.0f}” which is a format of the string. Numbers Using Commas Using commas in digits makes it easy for us to understand the digit and read the … Read more

What Is A Cross-Platform Way The Get The Home Directory?

In this post, we will learn What is a cross-platform way to get the home directory which we can perform using ‘os. path. expander user() function to get it done and to get the path of the current user, And the same method is known as the cross- platform method which has an advantage as … Read more

How Do I Sort A List Of Objects Based On An Attribute Of The Objects?

In this post, we will learn How to Sort a list of objects based on an attribute of the objects which we can perform using the sort built in function even we can do the same thing using the sorted function to and here we will discuss both the examples and execution with the help … Read more

What Are “named tuples” in Python?

In this post, we will learn more about What “named tuples” in Python it is nothing but a subclass of a regular tuple with a limitation as it has a fixed set of fields and there each field has a name. Which makes it easy to navigate and access the data and an intuitive way … Read more

slots | What is the Usage of __slots__?

In this post, we will get to know more about the Usage of __ slots__ in Python where slot is a class variable that has flexibility as it allows us to explicitly declare the attributes that have an instance as the class can have, which leads for reducing the memory footprint and improving performance.  Slots … Read more

Exception | How Do You Test That A Python Function Throws An Exception?

In this post, we will learn How to test that a Python function throws an Exception where we can use the assert raises method from the in built module called the ‘unit test’ module which we can directly import from the library. Catching Exception Here we have given an example where we can see how … Read more

How Do I Print To Stderr In Python?

In this post, we will learn How to Print to stderr in Python as for printing stdrr we use the ‘sys’ module of Python which we need to import and also provides access to some of the variables that are used and maintained by an interpreter or to the functions which are closely working with … Read more

Proper Way To Declare Custom Exceptions in Modern Python?

In this post, we will learn more about the Proper way to declare custom Exceptions in modern Python where we can inherit the properties of the exception class to design a custom exception class to catch any custom exceptions, to learn have a look at example given below. Custom Exceptions Custom inheritance is nothing but … Read more

Underscore | What is the Meaning of Single and Double Underscore Before an Object Name?

In this post, we will learn more about What is the meaning of single and double underscores before an object name. where each single and double have different use in python which we will discuss below with example to explain all these and get a clear idea of both.  Single Underscore As we know a … Read more

%d bloggers like this: