Pythonの関数で複数の戻り値を返す方法【Python】

複数の戻り値を返すことも容易にできます。

def func5():
return "あいうえお", 10
print(func5())

実行結果

('あいうえお', 10)

補足事項

個別に取得する場合は戻り値に添え字を付ければよい。

result = func5()
print(result[0])
print(result[1])

実行結果

あいうえお
10

Python

Posted by @erestage