Skip to content

Instantly share code, notes, and snippets.

@sc39IsADev
Last active September 23, 2020 01:16
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 sc39IsADev/e00b6c9b8564512bddecc1b43d4a1c76 to your computer and use it in GitHub Desktop.
Save sc39IsADev/e00b6c9b8564512bddecc1b43d4a1c76 to your computer and use it in GitHub Desktop.
Python test
import random
import os
num = 15
listt = list(",./<>?;:[]\{}|=-+_)(*&^%$#@!~")
listnum = 0
for i in range(256):
for i2 in range(256):
print(listt[listnum] * 2, end="")
listnum = listnum + 1
if listnum > len(listt) - 1:
listnum = 0
print("")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment