慕森王
您可能想要divmod:total_months = 23years, months = divmod(total_months, 12)print(f"{years} years, {months} months")# 1 years, 11 months内置divmod(x, y)函数返回一个 2 元组(x // y, x % y)- 换句话说,除以 的整数商xy,以及除法后的余数。当然,您始终可以通过这些操作自己做同样的事情:total_months = 23years = total_months // 12months = total_months % 12