Added some python projects

This commit is contained in:
plane000
2018-05-04 17:53:55 +01:00
parent 5c0772fea7
commit 452be24a19
8 changed files with 71 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
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)