Write two fucntions star(n) and blank(n), which will return a string of n stars and a string of n blanks, respectively. Test your functions with the following main program.

def main():
    k = 6
    for i in range(k-1):
        print(star(k-i), blank(2*i+1), star(k-i), sep='' )
    for i in range(k-1, -1, -1):
        print(star(k-i), blank(2*i+1), star(k-i), sep='' )

main()


Note: the expected output might be

****** ******
*****   *****
****     ****
***       ***
**         **
*           *
**         **
***       ***
****     ****
*****   *****
****** ******