¿Es posible tener funciones sobrecargadas en Python? En C # haría algo como void myfunction (int first, string second) { //some code } void myfunction (int first, string second , float third) { //some different code } y luego, cuando llamo a la función, diferenciaría entre los dos en función...