# In Python, we have three main types of loops:
# The while loop, the for loop, and nested loops.
# In this exercise, we'll wrap it up with an exercise on
printing a certain pattern, so let's begin.
Taking User Input:
—> In Python, every input that you take from the user is
automatically taken in the string format, and you need to
convert this into an int. Within the braces, you take the input,
and within the braces, take the number entered by the user.
—> If the user enters say 10 or 12 or any other number
which is not a multiple of 7, you have to take the input again.
While Loop:
—>The while loop is used to check if the value mod 7 is not
equal to 0. In this case, because it was not 0, this means
that the while's condition is true.
For Loop:
—>In a for loop, a counter is a variable that keeps track of
the number of times you've already repeated your names in
your ngers.
fi