Answers for "how to repeat something in python"

2

how to reapete the code in python

for i in range(4):  # 4 = number of times you want to run the code
  print("Hello World")
Posted by: Guest on July-12-2020
1

how to print a number at the end of a for loop in python

for i in range(1,4):
  if i == 3:
    print(i)
Posted by: Guest on October-06-2020
0

python repet x time

for i in range(50):
    print "Some thing"
Posted by: Guest on November-01-2020
0

.repeat python

>>> 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

Code answers related to "how to repeat something in python"

Python Answers by Framework

Browse Popular Code Answers by Language