Structural Subtyping in Python · Redowan’s Reflections

I love using Go’s interface feature to declaratively define my public API structure. Consider this example: package main import ( “fmt” ) // Declare the interface. type Geometry interface { area() float64 perim() float64 } // Struct that represents a rect… Read more

Similar

Python and R vs. SPSS and SAS

When we’re working for clients we mostly come across the statistical programming languages SAS, SPSS, R and Python. Of these SAS and SPSS are probably the most used. However, the interest for the open source languages R and Python is increasing. In recent... (more…)

Read more »