如何在Python中生成随机HTML颜色?

时间:2015-05-04 01:07:59

标签: python html colors

如何在Python中生成随机HTML颜色(#ABABAB等)?我尝试过像

这样的事情
random.choice('0','1','2',)

等。但它没有用。救命?谢谢。

1 个答案:

答案 0 :(得分:0)

from random import choice

def colour():
    hex_chars = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f']
    randomColour = '#'
    for i in range(0, 6):
        randomColour = randomColour + choice(hex_chars)
    return randomColour