Skip to content

Commit 78d0883

Browse files
authored
Create 0001
1 parent 34d38f4 commit 78d0883

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

lzn/0001/0001

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import random
2+
import string
3+
4+
def generateCode(count):
5+
for num in range(count):
6+
key = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ'
7+
code = ''.join(random.sample(key,10))
8+
print(code)
9+
10+
generateCode(200)

0 commit comments

Comments
 (0)