Moved to Medium!

I’ve started writing on Medium! For new posts, check out https://medium.com/@arschles.

 
3
Kudos
 
3
Kudos

Now read this

Type Safety For Python Functions

Have you ever written something like this Python code? def myFunction(a, b): if type(a) != str and type(b) != int: raise "a must be a string or b must be an int" #do some more stuff I find myself writing that all the time. I want the... Continue →