3 Comments

Another amazing basic project for hobbyists trying to learn! Thank you very much - keep them coming 🙏

Expand full comment

import datetime

birth = int(input("Enter your birth date: "))

today = datetime.date.today()

date = today.year

age = date - birth

print(age)

Expand full comment

Thanks Ardit

Expand full comment