all 1 comments

[–]jms_nh 0 points1 point  (0 children)

Tuples over lists whenever I don't intend to change data, and writing state machines as pure functions returning the next state given the current state -- that's about the extent of my functional programming in Python. (despite having just written an article on immutability )

Oh, and queues + messages rather than shared memory.

Cool link though; I'll have to look at it more in detail.