Answers for "use custome color for color in 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

change color in python

from colorama import *
# install with "pip install coloroma"
init(convert=True)

print(Fore.RED + 'Hello World!')
Posted by: Guest on April-13-2021

Python Answers by Framework

Browse Popular Code Answers by Language