For a Django App, each \"member\" is assigned a color to help identify them. Their color is stored in the database and then printed/copied into the HTML when it is needed. T
import random r = lambda: random.randint(0,255) print('#%02X%02X%02X' % (r(),r(),r()))