.format과 %()로 문자열을 출력할 수 있다.
둘 중 편한 방법을 택하면 된다.
import sys
input = sys.stdin.readline
T = int(input())
for i in range(T):
A, B = map(int, input().split())
print('Case #{}: {} '.format(i + 1, A + B))
# print('Case # %d: %d' % (i + 1, A + B))
docs.python.org/ko/3/tutorial/inputoutput.html
728x90
반응형
'Algorithm > 백준' 카테고리의 다른 글
백준 11654 - 아스키 코드 (0) | 2021.03.18 |
---|---|
백준 11022 - A +B - 8 (0) | 2021.03.18 |
백준 10172- 강아지 python (0) | 2021.03.18 |
백준 9653- 스타워즈 파이썬 (0) | 2021.03.18 |
백준 5554 - 심부름 가는 길 python (0) | 2021.03.18 |