b=[1,2,3,4,5]

for i in range(0,5):
globals()['c{}'.format(i)] = [b[i]]

print(c0)
print(c1)
print(c2)
print(c3)
print(c4)



이래도 일단 되긴 함

거지같지만