[Python][프로그래머스][Level1] 가운데 글자 가져오기

[Python][프로그래머스][Level2] 가운데 글자 가져오기

코드

def solution(s):
    n=len(s)
    return s[n//2] if n%2 else s[n//2-1:n//2+1]

길이가 홀수일 경우 가운데 index인 n//2

짝수일 경우 n//2-1과 n//2를 반환한다.

Discussion and feedback