-import string -
-from random import *-
-letters = string.ascii_letters-
-digits = string.digits -
-symbols = string.punctuation-
-chars = letters+digits+symbols-
-min_length = 8-
-max_length = 16-
-password = "".join(choice(chars) for x in -
-range(randint(min_length, max_length)))-
-print(password)-
-from random import *-
-letters = string.ascii_letters-
-digits = string.digits -
-symbols = string.punctuation-
-chars = letters+digits+symbols-
-min_length = 8-
-max_length = 16-
-password = "".join(choice(chars) for x in -
-range(randint(min_length, max_length)))-
-print(password)-


