vihika singhal vihika singhal
from datetime import date
  
def calculateAge(birthDate):
    today = date.today()
    age = today.year - birthDate.year - 
         ((today.month, today.day) <
         (birthDate.month, birthDate.day))
    return age
print(calculateAge(date(1997, 2, 3)), "years")
vihika singhal

vihika singhal Creator

(No description available)

Suggested Creators

vihika singhal