Hafeezul Kareem has Published 345 Articles

Python program to find all close matches of input string from a list

Hafeezul Kareem

Hafeezul Kareem

Updated on 27-Aug-2019 12:23:17

356 Views

In this tutorial, we are going to find a solution to a problem. Let's see what the problem is. We have a list of strings and an element. We have to find strings from a list in which they must closely match to the given element. See the example.Inputs strings ... Read More

Program to check if all the values in a list that are greater than a given value in Python

Hafeezul Kareem

Hafeezul Kareem

Updated on 27-Aug-2019 12:12:11

666 Views

In this tutorial, we will check whether all the elements in a list are greater than a number or not. For example, we have a list [1, 2, 3, 4, 5] and a number 0. If every value in the list is greater than the given value then, we return True else False.It's ... Read More

Custom len() Function In Python

Hafeezul Kareem

Hafeezul Kareem

Updated on 30-Jul-2019 22:30:26

645 Views

Let's see how can we implement custom len() function in Python. Try it by yourself first using the following steps.StepsGet the iterator from the user string/list/tuple.Define a function with a custom name as you like and invoke it by passing the iterator.Initialize the count to 0.Run a loop until it ... Read More

Python zip() Function

Hafeezul Kareem

Hafeezul Kareem

Updated on 30-Jul-2019 22:30:26

312 Views

zip() function is used to group multiple iterators. Look at the doc of the zip() function using help method. Run the following code to get the help on zip() function.Example Live Demohelp(zip)If you run the above program, you will get the following results.OutputHelp on class zip in module builtins: class zip(object) ... Read More

Ways to print escape characters in python

Hafeezul Kareem

Hafeezul Kareem

Updated on 30-Jul-2019 22:30:26

3K+ Views

In this article, we are going to see how we can print the escape characters in Python. I think you know what escape characters are? Let's see what escape characters for those who don't know are?Escape characters are used for the individual meanings in strings. If we want to include ... Read More

Advertisements