Suppose we have the following function:
def get_by_name(self, db: Session, *, name_in: str):
What function does the parameter "*" fulfill, does it imply that any number of parameters can be passed? Is it the same as *args?
Suppose we have the following function:
def get_by_name(self, db: Session, *, name_in: str):
What function does the parameter "*" fulfill, does it imply that any number of parameters can be passed? Is it the same as *args?