Show How To Install Colored Text
git clone https://github.com/L45T500TH4CCK/PythonColoredText.git
Show How To Import Colored Text Another Project
from Your_colorText_Path.colorText import colors
Show How To Use Colored Text Another Project
- You can use another commands
print(colors.Lime + " This Text color -> Lime " + colors.CD)
Show Example Code
from random import randrange
from colorText import colors
A = str(randrange(193913,2123123123))
print(colors.Yellow + " Account ID: " + colors.CD + colors.Lime + A + colors.CD)
Show What's This RandRange
randrange(min_val , max_val)
print(str(randrange(1,3)))
Output >>> 1 or 2
randrange(1,3) --> [1,3)