Python program to remove special characters from all files in a folder

In this python programming tutorial, we will learn how to remove special characters from all files in a folder. We will remove the numeric digits, special characters and blank spaces from the files. Following are the steps we are going to use in the program :.

Read

Kotlin program to find out the largest among three numbers

In this Kotlin programming tutorial, we will learn how to find out the largest number among the three. The user will enter the number values, our program will find and print out the result.

Read

C program to find the length of a linked list recursively

In this C programming tutorial, we will learn how to create a linked list using user input values and how to find out the length of that linked list recursively.

Read

Difference between Java compareToIgnoreCase and equalsIgnoreCase

We can use both compareToIgnoreCase and equalsIgnoreCase to compare two strings in Java. Both methods take one string as a parameter, compare it with the caller string and return the result.

Read

Python Set difference_update explanation with an example

In this tutorial, we will learn about the differenceupdate method of python set.

Read

Python program to find out the sum of all digits of a number

In this python programming tutorial, we will learn how to find out the total sum of all digits of a number. For example, if the number is 123, the program will print 6 as the output. Our program will take the number as input from the user.

Read

Python string ljust() method explanation with example

The ljust() word stands for left-justified. It returns a left-justified string of a given width. It uses one specific character called fill character to fill the additional position of the string. The default value of fill character is space.

Read

How to find the intersection of two list elements in python

In this python programming tutorial, we will learn how to find the intersection of two lists. The program will create two lists by taking the inputs from the user first. It will then find out the intersection of the lists and print out the result.

Read

Python symmetric_difference_update example

symmetricdifferenceupdate method is used to find the symmetric difference of two sets in python.

Read

Python program to swap the first and the last character of a string

Python program to exchange the first and the last character of a string. We will learn different string slicing ways to do that.

Read