Last active
September 23, 2020 01:16
-
-
Save sc39IsADev/e00b6c9b8564512bddecc1b43d4a1c76 to your computer and use it in GitHub Desktop.
Python test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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