728x90
# 형변환
a, b = input().split()
a = int(a)
# map
a, b = map(int, input().split())
# for문
for i in range(n):
a, b = map(int, input().split())
print(a + b)
# while, try/except
while True:
try:
a, b = map(int, input().split())
print(a + b)
except:
break
# if, and
if (a == 0 and b == 0):
break
# split
a, b = map(int, input().split(','))
# 문자열 입력받기
while True:
try:
print(input())
except EOFError:
break
# 숫자 Print
print("Case #%d: %d + %d = %d" % (i, a, b, a+b))
a = input()
# range(a, b, c)
# a 이상 b 미만까지의 숫자 시퀀스를 생성. c씩 증가
for b in range(0, len(a), 10):
print(a[b:b + 10]) # 문자열 슬라이싱
# calendar
import calendar
- calendar 사용법 (1924)
import calendar
days = ['MON', 'TUE', 'WED', 'THU', 'FRI', 'SAT', 'SUN']
a, b = map(int, input().split())
k = calendar.weekday(2007, a, b)
print(days[k])
# x, y = map(int, input().split())
# week = ['SUN', 'MON', 'TUE', 'WED', 'THU', 'FRI', 'SAT']
# month = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]
# day = 0
# for a in range(x-1):
# day += month[a]
# day = (day + y) % 7
# print(week[day])
인터프리터 언어.
그래서 실행시간이 느릴 수 있다.
요고 관련 공부.
종만부
c
java
-
'Develop > Algorithm' 카테고리의 다른 글
[백준 / Python] 1613 역사 (플로이드-와샬 알고리즘) (0) | 2020.12.04 |
---|---|
[백준 / Python] 2458 키 순서 (플로이드-와샬 알고리즘) (0) | 2020.12.04 |
[백준 / Python] 11404 - 플로이드 (0) | 2020.12.03 |
[백준 / Python] 9205 - 맥주 마시면서 걸어가기 (0) | 2020.11.27 |
[백준 / Python] 14503 - 로봇 청소기 (0) | 2020.11.25 |