SWEA(Python) 풀이/D1

SWEA[D1] (Python) 2046번 스탬프 찍기 풀이

개발윗미 2022. 4. 12. 16:22

Python으로 구현한 2046번 스탬프 찍기 문제 풀이입니다.

 

https://swexpertacademy.com/main/code/problem/problemDetail.do?problemLevel=1&contestProbId=AV5QKdT6AyYDFAUq&categoryId=AV5QKdT6AyYDFAUq&categoryType=CODE&problemTitle=&orderBy=FIRST_REG_DATETIME&selectCodeLang=PYTHON&select-1=1&pageSize=10&pageIndex=1 

 

SW Expert Academy

SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!

swexpertacademy.com


n = int(input())

for _ in range(n) :
    print('#', end='')

 

1. 수를 입력받아 반복문을 통해 입력받은 수만큼 '#'을 출력한다.