[표현식 for 항목 in 반복가능객체 if 조건]
original_list = [1, 2, 3, 4] doubled_list = [x * 2 for x in original_list] print(doubled_list) # [2, 4, 6, 8]