Skip to content

Instantly share code, notes, and snippets.

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 InersIn/43348c9720a90748b5c88856fc1ddcdc to your computer and use it in GitHub Desktop.
Save InersIn/43348c9720a90748b5c88856fc1ddcdc to your computer and use it in GitHub Desktop.
#!/usr/bin/env python3
i=666
data=""
for x in range(1,31):
for y in range(x):
data+="{} ".format(i)
i+=1
print(str(data.rstrip()))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment