Answers for "repeat 10 times python"

2

repeat 10 times python

for i in range(10):
Posted by: Guest on April-01-2021
-1

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]])
Posted by: Guest on May-14-2020

Python Answers by Framework

Browse Popular Code Answers by Language