Skip to content

Commit aad719a

Browse files
authored
Add files via upload
1 parent ac3dac6 commit aad719a

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

Random.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import random
2+
def randString(length=500000000):
3+
letters='abcdefghijklmnopqrstuvwxyz'
4+
return ''.join((random.choice(letters) for i in range(length)))
5+
6+
print ("Processing...")
7+
print (randString(),file=open("output.txt", "a"))
8+
print ("FINSIHED")
9+
input ("Press ENTER to exit")

0 commit comments

Comments
 (0)