print('Переменные a, b, c, d положительны:',
all(map((0.0).__lt__, [float(input("Введи %s:\n" % t)) for t in 'abcd'])))
a = float(input("Введи a:\n"))
b = float(input("Введи b:\n"))
c = float(input("Введи c:\n"))
d = float(input("Введи d:\n"))
LV = a > 0 and b > 0 and c > 0 and d > 0
print("Переменные a, b, c, d положительны:", LV)