def kwadraty(input_list): output_list = [i**2 for i in input_list if i > 0] return output_list