python

python

Python string rpartition method explanation with example

Python string rpartition method is used to split a string using a specific separator. It splits the string at the last occurrence of the given separator and returns a tuple of split strings.

Read
python

Python math trunc method explanation with example

Python math trunc method is used to truncate a number. It truncates the decimal part of the number and returns the integer part. Learn how to use trunc with examples.

Read
python

Python string rindex method explanation with example

Python string rindex method is used to find the rightmost index of a given substring in a string. Learn how to use this method with examples.

Read
python

Python numpy.around() method explanation with example

Python numpy around() method explanation with example. Learn how to use numpy.around with different decimal value, negative decimal value and different ways to get the result.

Read
python

Inheritance in Python explanation with example

Python inheritance explanation with example. Learn how to use inheritance and different types of inheritance in Python with example for each.

Read
python

What is generator function in Python and how to use it

Python generator function explanation with example. Learn how to use generator function to create a fibonacci series, how to use generator expression and how to use it with internal state.

Read
python

Python math fabs() method explanation with example

Python math fabs() method explanation with example. Learn the parameter and return value of fabs with different examples.

Read
python

Python program to print the harmonic series

Python program to print the harmonic series. We will learn three different ways to print the harmonic series. The program will print the value as number or as string.

Read
python

Python program to extract emails from a file

Python program to extract emails from a file. It will take the file path as input and return a list of all emails found in that file.

Read
python

Python program to find duplicate words in a file

Python program to find duplicate words in a file. We will learn how to do it in two different ways, by using set and by using a dictionary.

Read