标签: python function functional-programming
快速提问。例如,让我们说一个函数在python中输出两个变量。所以outputA和outputB。如何使用outputA并对其执行某些操作,例如在函数外部添加。
答案 0 :(得分:1)
您返回元组(对),因此请使用
first, second = example(10)
然后使用first对其进行操作。
first