1# Python code to demonstrate the working of
2# repeat()
3
4# importing "itertools" for iterator operations
5import itertools
6
7# using repeat() to repeatedly print number
8print ("Printing the numbers repeatedly : ")
9print (list(itertools.repeat(25, 4)))
10