python__[reverse()]

Jaewon Lee·2021년 5월 31일
0

Algorithm

목록 보기
9/36
post-thumbnail

On.


reverse()


list형.reverse()

  • reverse는 return 시키는 value 없이 배열 자체를 거꾸로 만든다.
arr = [1, 2, 3, 4]
print(arr.reverse())

>>
None
arr = [1, 2, 3, 4]
arr.reverse()
print(arr)

>>
[4, 3, 2, 1]

Off.


프론트와 백을 넘나드는 리드 개발자가 되는 그날까지 🔥🔥🔥

profile
Communication : any

0개의 댓글