how to repeat something a certain number of times in python code example

Example 1: python loop certain number of times

# To loop n times, use loop over range(n)
for i in range(n):
  # Do something

Example 2: repeat 10 times python

for i in range(10):

Example 3: python string repeat n times

print("Alice" * 5)				# AliceAliceAliceAliceAlice

Example 4: python repeat a sequence n times

>>> np.repeat(3, 4)
array([3, 3, 3, 3])
>>> x = np.array([[1,2],[3,4]])
>>> np.repeat(x, 2)
array([1, 1, 2, 2, 3, 3, 4, 4])
>>> np.repeat(x, 3, axis=1)
array([[1, 1, 1, 2, 2, 2],
       [3, 3, 3, 4, 4, 4]])
>>> np.repeat(x, [1, 2], axis=0)
array([[1, 2],
       [3, 4],
       [3, 4]])