在python中关于函数的定义正确的有( )
A、def f1(int a,int b): s=a+b return s
B、def int f1(int a,int b): s=a+b return s
C、def f1(a,b): s=a+b return s
D、def f1(a,b): s=a+b return a,b,s
发布时间:2025-03-19 01:07:49
A、def f1(int a,int b): s=a+b return s
B、def int f1(int a,int b): s=a+b return s
C、def f1(a,b): s=a+b return s
D、def f1(a,b): s=a+b return a,b,s