What is pythonic best practice for allowing one function to use another function\'s returned values? e.g. Is it better to call one function within another, or better that functi
As import this would say, "explicit is better than implicit"; so go with the first form.
import this
If the number of return values becomes large, let use_value take a sequence argument instead.
use_value