Answers for "random color python"

5

generate a color python

color = lambda : [random.randint(0, 255), random.randint(0, 255), random.randint(0, 255)]
Posted by: Guest on October-14-2020
1

python random hex color

import random
r = lambda: random.randint(0,255)
print('#%02X%02X%02X' % (r(),r(),r()))
Posted by: Guest on December-28-2020
0

matplotlib random color

import random

# note that matplotlib requires 2d array for rbg colors
rgb = [[random.random(), random.random(), random.random()]]
plt.scatter(x, y, c=rgb)
Posted by: Guest on May-30-2021

Python Answers by Framework

Browse Popular Code Answers by Language