728x90
def solution(phone_number):
len_pn=len(phone_number)-4
answer = '*'*len_pn+phone_number[-4:]
return answer
so easy ㅋㅋ
'STUDY > Algorithm' 카테고리의 다른 글
[프로그래머스] LEVEL1 x만큼 간격이 있는 n개의 숫자, python3 (0) | 2019.10.19 |
---|---|
[프로그래머스] LEVEL1 행렬의 덧셈,python3 (0) | 2019.10.19 |
[프로그래머스] LEVEL1 최대공약수와 최소공배수, python3 (0) | 2019.10.19 |
[프로그래머스] 제일 작은 수 제거하기,python3 (0) | 2019.10.19 |
[프로그래머스] LEVEL1 정수 내림차순으로 배치하기,python3 (0) | 2019.10.19 |