Tagged Questions

6
votes
4answers
312 views

Pythonic way to only do work first time a variable is called

my Python class has some variables that require work to calculate the first time they are called. Subsequent calls should just return the precomputed value. I don't want to waste time doing this work ...