I want to calculate age. I am going to receive the birthday from user and calculate the age. I think I need to convert the Input type into date format. Can someone helps me?
I tried to make a list of [year, month, day]. They are integers and I used the following formula to calculate the age but I ran into the error(int type in callable).
Age=(Now.year-Birthday[0])-(Now.month,Now.day)<(Birthday[1],Birthday[2])