Python 関数の例 1000Python 2022年10月09日 0 1.サンプルdef func1(x,y): return x+ yprint(func1(2,3))2.実行結果5が出力されます PR