Posts by bzrr • 223 points
1 post
-
12
votes1
answer253
viewsQ: Is it wise to implement functions that only call for other functions?
I learned that functions should be small and concise. This rule would also apply to functions like this? def run_game(self): process_input() update_state() render() What I mean is: run_game appears…