Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Colored Print In Python

# the string '33[92m' represents the color green,
# and '33[0m' is used to go back to the standard color of the terminal

GREEN = '33[92m'
END_COLOR = '33[0m'
print(GREEN + "Hello World" + END_COLOR)
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #Colored #Print #In #Python
ADD COMMENT
Topic
Name
2+9 =