Python Program To Generate Pattern 12
Write Python Program To Generate Pattern 12
# Write Python Program To Generate Pattern 12 n = 3 i = 1 while(i < n): k = 1 while(k <= i): print(' ', end ='') k += 1 j = 1 while(j <= n - i + 1): print('*', end = ' ') j = j + 1 print('') i = i + 1 n = 3 i = 1 while(i <= n): k = n while(k >= i): print(' ', end = '') k = k - 1 j = 1 while(j <= i): print('*', end = ' ') j = j + 1 print('') i = i + 1
Output:
* * *
* *
*
* *
* * *