Many ways of Function Signature in python
Dec 17, 2021 · 2 min read · 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...
Join discussion

