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 :.
ReadIn 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.
ReadIn 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.
ReadWe 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.
ReadIn this tutorial, we will learn about the differenceupdate method of python set.
ReadIn 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.
ReadThe 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.
ReadIn 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.
Readsymmetricdifferenceupdate method is used to find the symmetric difference of two sets in python.
ReadPython program to exchange the first and the last character of a string. We will learn different string slicing ways to do that.
Read