From 6b950d83baabb380befebb8dd72147fdd80a003c Mon Sep 17 00:00:00 2001 From: Pranav78654 <54017992+Pranav78654@users.noreply.github.com> Date: Tue, 13 Sep 2022 12:32:12 +0530 Subject: [PATCH] just made some comments --- Python/Leapyear.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Python/Leapyear.py b/Python/Leapyear.py index 1e77391..7764c75 100644 --- a/Python/Leapyear.py +++ b/Python/Leapyear.py @@ -1,9 +1,9 @@ # Python program to check if year is a leap year or not -year = 2000 +# year = 2000 # To get year (integer input) from the user -# year = int(input("Enter a year: ")) +year = int(input("Enter a year: ")) if (year % 4) == 0: if (year % 100) == 0: