We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac3dac6 commit aad719aCopy full SHA for aad719a
Random.py
@@ -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