We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07fa80d commit 1007618Copy full SHA for 1007618
1 file changed
sandeepbvv11/0001/0001.py
@@ -1,14 +1,13 @@
1
import uuid
2
import random
3
-f=open('IDs.txt','w')
4
st= 'qwertyuiopasdfghjklzxcvbnm!@#$%^&*'
5
for i in range(0,200):
6
x=str(uuid.uuid4().fields[-1])[:10]+st
7
y=''
8
for j in range(0,10):
9
y+=random.choice(x)
10
print (y+"\n")
11
- f.write(y+"\n")
12
-f.close()
+
13
14
0 commit comments