In python3, the help output for sorted, for example, is:
"sorted(iterable, /, *, key=None, reverse=False)"
What does the '/' and '*' mean?
help(sorted)
python2 output is
sorted(iterable, cmp=None, key=None, reverse=False) --> new sorted list
so what is the '/' and '*' in python3?