Files
Examples/Python/Brute Force Helo, World!.py
2018-05-04 17:53:55 +01:00

13 lines
220 B
Python

import random
target = 'Hello World!'
testString = ''
while testString != target:
testString = ''
for i in range(12):
testString += chr(random.randint(32, 126))
print(testString)
print(testString)