Example of python zip method to zip list of lists. We can pass iterables to this method and it will retun one iterator of tuples.
ReadPython program to check if a string is valid URL or not. We will use validator module to solve this problem.
ReadPython program for email address validation. We will learn how to solve this by using regex and by usgin validators module.
ReadLearn how to find the sum of digits in a string in python. We will learn how to solve this by using a for loop and using only one line.
ReadLearn to print a half pyramid pattern in Python using star or any other character. The user will enter the height of the pyramid and it will print that out.
ReadPython program to print an inverted half pyramid using star or any other character. The program will take the height or size of the pyramid and it will print the pyramid.
ReadPython program to find out the sum of all numbers in an array. The program will take the numbers to put in an array and find out the sum.
ReadThis post will show you how to find a value in a linkedList. This program will show you how to create a linked list, display the list, find one value in the linked list based on user input.
ReadDart program to check if a list is empty or not. Dart provides couple of different properties to check if a list is empty.
ReadDart program to check if a list contains a specific element or not. Learn to solve this by using a for-in loop, using any() and using contains() method.
Read