Skip to content

Commit 07fa80d

Browse files
committed
Updated 0001.py
1 parent 290cadb commit 07fa80d

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

sandeepbvv11/0001/0001.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
import uuid
22
import random
33
f=open('IDs.txt','w')
4+
st= 'qwertyuiopasdfghjklzxcvbnm!@#$%^&*'
45
for i in range(0,200):
5-
x=str(uuid.uuid4().fields[-1])[:10]
6-
f.write(x+"\n")
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")
712
f.close()
813

914

0 commit comments

Comments
 (0)