https://www.acmicpc.net/problem/11021
1. 내가 작성한 코드
t = int(input())
for i in range(1,t+1):
a,b = map(int, input().split())
print("Case #",end="")
print(i,end='')
print(":",a+b)
ㅋㅋㅋ ㅠㅠ pirnt 함수 안에 , 를 넣어서 출력하면 띄어쓰기가 되는데?! 좋은 방법이 있을텐데?! 하고 풀었다.
여윽시나 문자열 포매팅을 안쓰다 보니 까먹은 것,, 외우자 💦
("Case #"+i) 와 같이 +를 사용하는 방법도 있음!
2. 모범 답안
t = int(input())
for i in range(1,t+1):
a,b = map(int, input().split())
print(f'Case #{i}: {A+B}')
'🔅코딩테스트 공부🔅 > ❗백준' 카테고리의 다른 글
[백준] 5597번 과제 안 내신 분..?(with python) (0) | 2023.01.18 |
---|---|
[백준] 1110번 더하기 사이클(with python) (0) | 2023.01.17 |
[백준] 25304번 영수증(with python) (0) | 2023.01.17 |
[백준] 10989번 수 정렬하기3(with python) (0) | 2023.01.13 |
[백준] 2751번 수 정렬하기(with python) (0) | 2023.01.13 |
댓글