diff --git a/contribution/ansanpsam710 b/contribution/ansanpsam710 new file mode 100644 index 00000000..d838867e --- /dev/null +++ b/contribution/ansanpsam710 @@ -0,0 +1,30 @@ +# Python 3.x code to demonstrate star pattern + +# Function to demonstrate printing pattern of numbers +def numpat(n): + + # initialising starting number + num = 1 + + # outer loop to handle number of rows + for i in range(0, n): + + # re assigning num + num = 1 + + # inner loop to handle number of columns + # values changing acc. to outer loop + for j in range(0, i+1): + + # printing number + print(num, end=" ") + + # incrementing number at each column + num = num + 1 + + # ending line after each row + print("\r") + +# Driver code +n = 5 +numpat(n)