I just picked up image processing in python this past week at the suggestion of a friend to generate patterns of random colors. I found this piece of script online that gene
import random rgb_full="(" + str(random.randint(1,256)) + "," + str(random.randint(1,256)) + "," + str(random.randint(1,256)) + ")"