[프로그래머스/python3] 직사각형 별찍기 문제 풀이 #map() 함수를 이용하여 input 받은 문자열을 int형으로 변경 a, b = map(int, input().strip().split(' ')) print(("*"*a+"\n")*b) map 함수에 대해 더 알고싶다면 아래 사이트를 참조한다. https://wikidocs.net/22803 위키독스 온라인 책을 제작 공유하는 플랫폼 서비스 wikidocs.net Algorithm/프로그래머스 2021.07.06