import random
list_ = [random.randint(-3, 12) for x in range(12)]
count = len(list(filter(lambda x: x < 0, list_)))
print(", ".join(map(str, list_)))
print(f"Чисел меньше 0: {count}")
Объяснение:
import random
list_ = [random.randint(-3, 12) for x in range(12)]
count = len(list(filter(lambda x: x < 0, list_)))
print(", ".join(map(str, list_)))
print(f"Чисел меньше 0: {count}")
Объяснение: