문제 설명프로그래머스 모바일은 개인정보 보호를 위해 고지서를 보낼 때 고객들의 전화번호의 일부를 가립니다. 전화번호가 문자열 phone_number로 주어졌을 때, 전화번호의 뒷 4자리를 제외한 나머지 숫자를 전부 *으로 가린 문자열을 리턴하는 함수, solution을 완성해주세요. 문제 풀이def solution(phone_number): num = len(phone_number)-4 c = "*" return(c*num + phone_number[-4:])return "*" * (len(phone_number)-4) + phone_number[-4:] 1. phone_number을 매개변수로 하는 solution 함수 정의2. 변수 num은 phone_number의 길이에서 -4만큼 ..