본문 바로가기

STUDY/Python

[프로그래머스] 문자열의 뒤의 n글자

728x90

[나의 풀이]

def solution(my_string, n):
    answer = ''
    my_list = list(my_string)
    list_len = len(my_list)

    for s in range(list_len-n,list_len):
            answer += my_list[s]

    return answer

 

[다른 사람 풀이]

def solution(my_string, n):
    return my_string[-n:]

 

그냥 [-n:] 하면 답이 나온다....

내 답안과 비교하면 엄청 간단하다.. ㅜㅜ

728x90

'STUDY > Python' 카테고리의 다른 글

[백준] 10828번 스택 python  (0) 2023.06.19
[자료구조] 스택 stack  (0) 2023.06.19
[프로그래머스] 공배수  (0) 2023.06.11
[프로그래머스] 전화번호 목록  (0) 2023.06.07
@staticmethod 란?  (0) 2023.04.19