Skip to content

Instantly share code, notes, and snippets.

@Kush1101
Created September 24, 2020 13:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kush1101/fa59c800cba98ca5aa228a30a0f7e880 to your computer and use it in GitHub Desktop.
Save Kush1101/fa59c800cba98ca5aa228a30a0f7e880 to your computer and use it in GitHub Desktop.
from itertools import repeat
for i in repeat(1,5):
print(i, end = ' ')
#OUTPUT
'''
1 1 1 1 1
'''
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment