Skip to content Skip to sidebar Skip to footer
Showing posts with the label Argument Passing

Is There A Scala Equivalent Of The Python List Unpack (a.k.a. "*") Operator?

In Python, we have the star (or '*' or 'unpack') operator, that allows us to unpack… Read more Is There A Scala Equivalent Of The Python List Unpack (a.k.a. "*") Operator?

Python: File Object As Function Argument

I have written a function (read()) in a module I want to import in my main script: this function … Read more Python: File Object As Function Argument