Nested loops:
A nested loop in Python is a loop inside another loop.
The outer loop controls the number of iterations for the inner loop.
The inner loop executes completely for every single iteration of the outer loop.
Example:
For each value of i, inner loop will be executed completely.
Only then outer loop will move to next value of i.
Wtite a program to display the tables of first 5 numbers using nested loop.
Examples:
Generate pyramid of starts of n levels.
Write a program that checks a list of words and display the words that contain any vowel.