# Python 3.X
from random import randint
from functools import reduce
arr = [randint(1, 201) for _ in range(100)]
odd = list(filter(lambda x: x % 2 == 1, arr))
print('Количество: {}'.format(len(odd)), 'Произведение: {:,}'.format(reduce(lambda x, y: x * y, odd)), sep='\n')