TITLE:A technical article DATE:2015 April 9th AUTHOR:Jo This Python code is really good: def good(): a = 1 b = 2 c = a + b return None This one is *even better:* def better(): a = 128 b = 256 c = a * b return None