from random import randint
A = list((randint(-20, 20)) for i in range(100))
a = len(list(filter(lambda x: x>0, A)))
print(f"Положительных элементов: {a}",
f"Отрицательных элементов: {100-a}", sep="\n")
from random import randint
A = list((randint(-20, 20)) for i in range(100))
a = len(list(filter(lambda x: x>0, A)))
print(f"Положительных элементов: {a}",
f"Отрицательных элементов: {100-a}", sep="\n")