well I got bored of Roblox coding so I thought to come back to scratch, so I made this. A lot of people are asking how I made it. (cuz I have friends on scratch) green flag 1x age set 0 1x year set 0 1x ask "What's your birth year" 1x year set (Answer) 1x repeat until <(Year) = (current year)>1x change (year) 1 1x change (age) 1 1x end change (age) -1 1x (for accurate results) say (age) thats it
this is the python code import datetime age = -1 current_year = datetime.date.today().year print("current_year:", current_year) birth_year = int(input("What's your birth year?:")) temp_year = birth_year if birth_year>current_year: print ("this number is not computable") while temp_year != 2023: temp_year += 1 age += 1 print("age: ", age)