python下rgb转hex

2018-03-21  本文已影响0人  neao_anderson

def toHex(r, g, b):

    color = "#"

    color += str(hex(r)).replace('x','0')[-2:]

    color += str(hex(g)).replace('x','0')[-2:]

    color += str(hex(b)).replace('x','0')[-2:]

    return color

注意replace('x','0')的用途,把int转成hex后,显示的0x*,0到15取值后2位后会成为x,所以把x替换成0后,取值为0,就没问题。

上一篇 下一篇

猜你喜欢

热点阅读