更改python中的函数而不是重新定义它们?

时间:2017-05-25 11:22:23

标签: python function python-3.6

标题说它 - 如果我有这样的功能并且想要改变(例如打印输出)我除了重新定义它之外还有什么?:

import sys
def UselessFunction(Weight, WeightIncrease):
    for Year in range(0, 16):
        Weight = Weight + WeightIncrease
        Weight_On_Moon = Weight * 0.165
        print('Your weight on the moon would be %s in the year %s' % (Weight_On_Moon, Year))
        Weight = Weight + 1

想要将“你的体重......”更改为“在月球上你会比在地球上轻一点!实际上,你只会在%s'%(%_On_Moon,年))

感谢所有

1 个答案:

答案 0 :(得分:0)

这是一个很好的例子:

{{1}}