"""Returns a random string of length string_length."""
random=str(uuid.uuid4())+str(uuid.uuid4())+str(uuid.uuid4())+str(uuid.uuid4())+str(uuid.uuid4())+str(uuid.uuid4())+str(uuid.uuid4())+str(uuid.uuid4())# Convert UUID format to a Python string.
random=random.upper()# Make all characters uppercase.
random=random.replace("-","")# Remove the UUID '-'.
returnrandom[0:string_length]# Return the random string.