출처: https://meyouus.tistory.com/64 [정보 공유 - For Me For You For Us]
본문으로 바로가기

<Hackerrank 문제풀이: 파이썬> Print Function

category 카테고리 없음 2020. 11. 12. 20:06

 

생각해보면 간단한 문제이다:

if __name__ == '__main__':
    n = int(input())
    num_list = []
    for i in range(1, n+1):
        num_list.append(str(i))
    print(''.join(num_list))

num_list 에 1 부터 n 까지의 숫자를 문자열로 append 해주고, 이를 ''.join을 통해 출력해준다.