Every line of 'python repeat function' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.
93 def fillRepeat(container, func, n): 94 return container(func() for _ in xrange(n))
37 @public 38 def repeat(obj, nrepeat=None): 39 """Generator to repeatedly yield the same object 40 41 Args: 42 obj (any): The object to yield 43 44 Kwargs: 45 nrepeat (int): The number of times to repeatedly yield obj 46 """ 47 if nrepeat is None: 48 return itertools.repeat(obj) 49 else: 50 return itertools.repeat(obj, times=nrepeat)
13 def repeat(object, times = 0): 14 yield object