x = []
for i in range(5):
x.append(i)
x = [i for i in range(5)]
x = [*range(5)]

세 가지가 모두 동일함