Every line of 'python repeat list n times' 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.
13 def repeat(object, times = 0): 14 yield object
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)
657 def test_repeat(self): 658 ref = range(0, 1024, 4) 659 ll = dllist(ref) 660 self.assertEqual(ll * 4, dllist(ref * 4))
93 def fillRepeat(container, func, n): 94 return container(func() for _ in xrange(n))