guys.
I'm a novice for Python, so, coming here for seeking some answers. My question is what the meaning of "*" and the three dots as following in a python function.
Those codes are placed in the source code of torch. I have this question when I browse those code.
def round(input: Tensor, *, out: Optional[Tensor]=None) -> Tensor: ...
And, there are many code like this, I am wondering for where to read the main code of those function so that I can understand what the function really do?