alessandro trinca tornidor
refactor: organize project with tests in a package, start following suggestions from pycharm, sonarlint and snyk
74a35d9
raw
history blame
212 Bytes
import string
import random
def generateRandomString(str_length: int = 20):
# printing lowercase
letters = string.ascii_lowercase
return ''.join(random.choice(letters) for i in range(str_length))