Write a program to print
W pattern of N lines using an asterisk(*) character as shown below.
Note: There is a space after each asterisk * character.
# Nothing is "shown below", but hope this is what you need:
n = int(input())
for i in range(n):
lst = [' '] * (4 * n - i - 3)
lst[i] = lst[i + 2 * n - 2] = lst[-1] = lst[-1 - 2 * n + 2] = '*'
print(''.join(lst))
Comments
Leave a comment