HR파이썬 Write a function

Jmnote bot (토론 | 기여)님의 2021년 7월 31일 (토) 10:53 판 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

개요[ | ]

HR파이썬 Write a function
해커랭크 Python
# 문제 비고
HR파이썬 Introduction e
1 HR파이썬 Say "Hello, World!" With Python
2 HR파이썬 Python If-Else
3 HR파이썬 Arithmetic Operators
4 HR파이썬 Python: Division
5 HR파이썬 Loops
6 HR파이썬 Write a function
7 HR파이썬 Print Function

def is_leap(year):
    leap = False
    if year%4 == 0:
        leap = True
        if year%100 == 0:
            leap = False
            if year%400 == 0:
                leap = True
    return leap
year = int(input())
print(is_leap(year))
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}