All questions
# Problem 1 ### Write a function to construct the following pattern, using a nested for loop.
# Problem 2 ### Write a Python program that iterates the integers num = 20. For multiples of three print "Fizz" instead of the number and for multiples of five print "Buzz". For numbers that are multiples of three and five, print "FizzBuzz".
# Problem 3 ### Write a Python function to check whether an alphabet is a vowel or consonant.
# Problem 4 ### Write a function to find the median of three values.
# Problem 5 ### Write a function to construct the following pattern, using a nested loop number.
``` Output:
1 22 333 4444 55555 666666 7777777 88888888 999999999 ```