ASCII generator
I was bulding a simple website and wanted to add an asthetic of jumbled, random code that looked like errors or glitches.
I wanted something better than mashing the keyboard to randomise things, so I built this tiny bit of code
The Python Code
from random import *
count =int (input("How many ASCII do you need? "))
for loop in range(count):
rnum = (randint(33, 127))
print (chr(rnum), end="")
print("")