你的函数有两个参数:
计算多少年前父亲的年龄是儿子的两倍(或多少年后他将是儿子的两倍)。
Solution:
def twice_as_old(f, s): return abs(f - s * 2)
:abs(x) 取数值绝对值