Posts from Python

Reloading a module in Python

By Ranjeet V

Sometimes when you are testing a script in Python, you may need to make changes in your code and then reload the module. In such cases, reload() can be very helpful. The syntax for.... Read More

numpy.ones() and numpy.ones_like() in Python

By Yash Dixit

In this tutorial we will understand numpy.ones() and numpy.ones_like() in detail. We will understand the difference between them and also how to implement each of them with all the.... Read More

Scramble Strings in a given Python List

By Karun Thannickal

In this tutorial, we will look at how to scramble strings in a given Python list. We will look at a simple implementation of this task in Python. We will make use of the sample() .... Read More

Difference between various implementation of Python

By Harini Madduri

In this tutorial, you are going to learn what is the difference between the various implementation of Python. There are different types of implementation in Python. They are Python.... Read More

Implement 3D vector using dunder methods

By Karun Thannickal

In this tutorial, we will learn how to implement a 3D vector using Dunder methods in Python. First, we will look at what dunder methods are. Next, we look at the basic properties o.... Read More

Phrase Extraction in a string in Python

By Harini Madduri

In this tutorial, you are going to learn about Phrase Extraction in a string in Python. What is Phrase Extraction? Here we can take one string and select the phrase which we want t.... Read More

Python Exit handlers: atexit

By Sri Vikas Prathanapu

In this tutorial, you will learn about Exit handlers in Python. Python Exit handlers: atexit module as two functions namely register() and unregister(). These are functions that ex.... Read More

Find the first repeated character in a string in Python

By Meetali Tomer

In this tutorial, we are going to learn how to find the first repeated character in Python. Problem Statement Given a string, we need to find the first repeated character in the st.... Read More