Many ways of Function Signature in python
Recently I was looking through the implementation of Counter implementation in the standard library. It was interesting to see the following function signature in the constructor: def __init__(self, iterable=None, /, **kwargs): .... This peculi...


