PHP has type hinting and interfaces that makes it "java" like(it's a strength).
Python doesnt have interfaces but allows type hinting through decorators.
@typecheck def gimmeFloat(a:int, b:list, c:tuple=(1,2,3)) -> float: return 3.14
On the other hand, <? ?>.
PHP has type hinting and interfaces that makes it "java" like(it's a strength).
Python doesnt have interfaces but allows type hinting through decorators.