-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
STEP 3. 반복 #4
Labels
STEP
단계
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
단계 설명
문제 / 코드보기
새로 알게된 점
int
타입이여야 한다.int
타입을 연산자/
로 나누면,float
타입으로 반환된다.input = sys.stdin.readline
을 사용하면, 시간을 줄일 수 있다. (단, 이 때는 개행문자까지 같이 입력을 받기 때문에,rstrip()
을 추가로 해주는 것이 좋다.)inputs = sys.stdin.readlines()
를 이용하면 input 값 전체를 한 번에 읽어와 line 별로 list 로 만들어 준다.try: - except: -
를 이용해서 EOF를 끝낼수도 있다.The text was updated successfully, but these errors were encountered: