标签: python
我刚开始使用python,需要知道如何从多个输出变量中选择特定变量。
下面是我过去在matlab中所做的事情,以及我需要在python中做的事情
如何在python中替换〜运算符
function [a,b,c] = myfun(x,y) a=x b=y c=x*y [~,~,c] = myfun(5,2) def myfunc(x,y): return x,y,x*y ~,~,c = myfunc(5,2)