Skip to content

Commit eb5f9a3

Browse files
Added Age Calculator
A simple python program to calculate the age of person using datetime.
1 parent f3dabfe commit eb5f9a3

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

Age Calculator.py

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Calculate the complete age of a person in years, months and days
2+
3+
import datetime
4+
5+
def calculate_age(born):
6+
today = datetime.date.today()
7+
return today.year - born.year - ((today.month, today.day) < (born.month, born.day))
8+
9+
def main():
10+
11+
# Get the date of birth
12+
dob = input("Enter your date of birth (YYYY-MM-DD): ")
13+
14+
# Split the date into year, month and day
15+
year, month, day = map(int, dob.split('-'))
16+
17+
# Calculate the age
18+
age = calculate_age(datetime.date(year, month, day))
19+
20+
# Print the age
21+
print("Your age is: {}".format(age))
22+
23+
if __name__ == '__main__':
24+
main()

0 commit comments

Comments
 (0)