19 lines
514 B
Python
19 lines
514 B
Python
import random
|
|
import string
|
|
|
|
|
|
class RANDOM:
|
|
"""Random strings generator"""
|
|
|
|
def long(self):
|
|
long_random = ''.join([random.choice
|
|
(string.ascii_letters + string.digits)
|
|
for n in range(24)])
|
|
return long_random
|
|
|
|
def short(self):
|
|
short_random = ''.join([random.choice
|
|
(string.ascii_letters + string.digits)
|
|
for n in range(24)])
|
|
return short_random
|