最佳答案
有没有可能在 Python 中使用重载函数?
在 C # 中,我会这样做
void myfunction (int first, string second)
{
# Some code
}
void myfunction (int first, string second, float third)
{
# Some different code
}
然后当我调用这个函数的时候它会根据参数的数量来区分这两个函数。有可能在 Python 中做类似的事情吗?