import random
import string
adjectives = ['sleepy', 'slow', 'hot',
'cold', 'big', 'red',
'orandge', 'yellow', 'green',
'blue', 'good', 'old',
'white', 'free', 'brave']
nouns = ['apple', 'dinosaur', 'ball', 'cat', 'goat', 'dragon', 'car', 'duck', 'panda']
print ('Добро пожаловать!')
adjective = random.choice (adjectives)
noun = random.choice (nouns)
number = random.randrange(0,100)
special_char = random.choice (string.punctuation)
password = adjective + noun + str(number) + special_char
print ('Новый пароль: %s ' % password)