5 lines
105 B
Python
5 lines
105 B
Python
|
import random
|
||
|
|
||
|
def generate_token(length=6):
|
||
|
return random.SystemRandom().randint(0, (10**length)-1)
|