CodingTest

[파이썬 코딩 도장] 32.5 심사문제: 파일 이름을 한꺼번에 바꾸기

nineDeveloper 2020. 12. 17.
728x90

정답

list(map(lambda x: x.split('.')[0].zfill(3) + '.' + x.split('.')[1] ,files))

또는

list(map(lambda x: '{0:03d}.{1}'.format(int(x.split('.')[0]),x.split('.')[1]) ,files))
728x90

댓글

💲 추천 글