Description
Problem1: Diamond-Printing Program using Recursion
Write a program that prints the following diamond shape corresponding to the input value using recursion.
Take to input value as an argument shown as below:
>>> python3 quiz6-1.py 5
*
***
*****
*******
*********
*******
*****
***
*
Problem2: Diamond-Printing Program using Comprehension.
Write a program that prints the following diamond shape corresponding to the input value using comprehension. There is no restrictions on using comprehension methods.(list,set or dictionary comprehension).
Take to input value as an argument shown as below:
>>> python3 quiz6-2.py 5
*
***
*****
*******
*********
*******
*****
***




