반응형
- 문제 설명
문자열 str과 정수 n이 주어집니다.
str이 n번 반복된 문자열을 만들어 출력하는 코드를 작성해 보세요.
- 제한사항
1 <= str의 길이 <= 10
1 <= n <= 5
- 입출력 예
- 정답
방법1)
str, n = input().strip().split(' ')
n = int(n)
if n>=1:
print(str * n)
else:
print(" ")
방법2)
str, n = input().strip().split(' ')
n = int(n)
answer = " "
for i in range(n):
answer+=str
print(answer)
방법3)
str, n = input().strip().split(' ')
n = int(n)
for i in range(n):
print(str,end=' ')
반응형
'코딩 > 프로그래머스' 카테고리의 다른 글
프로그래머스 레벨Lv.0 파이썬python 덧셈식 출력하기 (75) | 2024.07.17 |
---|---|
프로그래머스 레벨LV.0 특수문자 출력하기 파이썬python (87) | 2024.07.10 |
프로그래머스 레벨LV.0 대소문자 바꿔서 출력하기 파이python (1) | 2024.07.10 |
프로그래머스 레벨LV0 a와 b 출력하기 파이썬Python (0) | 2024.07.07 |
프로그래머스 레벨LV.0 파이썬python 문자열 출력하기 (0) | 2024.07.07 |