
#python_tip from @NurmeAve:
Python's divmod() is one way to convert months into years and months:
divmod(1, 12) # (0, 1) -> 0 years & 1 month
divmod(12, 12) # (1, 0) -> 1 year & 0 months
divmod(55, 12) # (4, 7) -> 4 years & 7 months
English

