Python example to zip list of lists using zip method

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.

Read

How to find if a string is a valid URL or not in Python

Python program to check if a string is valid URL or not. We will use validator module to solve this problem.

Read

How to check if a email address is valid or not in Python

Python program for email address validation. We will learn how to solve this by using regex and by usgin validators module.

Read

Python program to find the sum of digits in a string

Learn 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.

Read

Python program to print a half pyramid in star

Learn 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.

Read

How to print inverted half-pyramid in python using star

Python 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.

Read

Python program to find out the sum of all numbers in an array

Python 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.

Read

C++ program to find a value in a linkedList

This 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.

Read

Dart program to check if a list is empty or not

Dart program to check if a list is empty or not. Dart provides couple of different properties to check if a list is empty.

Read

Dart program to check if a list contains a specific element or not

Dart 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