12-18-2023, 07:34 PM (This post was last modified: 12-18-2023, 07:38 PM by none.)
Quote:Best Code For Create Infinity Bytes in Python (Note: IF YOUR COMPUTER IS BAD DONT TRY)
Spoiler:
Code:
import string, random
l = string.ascii_letters
c = l.__len__()-1
file = open("bad.txt",'w')
o = 0
try:
while True:
for i in range(64):
file.write(l[random.randint(0, c)])
o += 64
except KeyboardInterrupt:
print("END Write "+str(o)+" Byte")