x = []

for i in range(5):
x.append(i*2)

x = [i*2 for i in range(5)]


x = [*map(lambda x:x*2, range(5))]


3번째는 병신 같음