I know what the star operator does depending on its context. However i keep seeing a solo '*' as a parameter in function definitions and im confused as to what it does...
Why does this work and what does it even do. I thought you would have had to follow it up with the name of the tuple you want to store the undefined amount of arguments in so you can adress it.
On a similar note i also sometimes see a solo '/' as a parameter when i use the help() built-in function to quickly see what another function does. What is the purpose of it in this context?
from dataclasses import dataclass
help(dataclass)