Skip to content

Commit 11cf942

Browse files
committed
Updated file in Python repository
1 parent 6469a9c commit 11cf942

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

Colors/print_colors.py

-7
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,13 @@
11
import sys
2-
3-
42
class colors:
53
CYAN = "\033[36m"
64
GREEN = "\033[32m"
75
YELLOW = "\033[33m"
86
BLUE = "\033[34m"
97
RED = "\033[31m"
108
ENDC = "\033[0m"
11-
12-
139
def printc(color, message):
1410
print(color + message + colors.ENDC)
15-
16-
17-
# color which we print or import
1811
printc(colors.CYAN, sys.argv[1])
1912
printc(colors.GREEN, sys.argv[1])
2013
printc(colors.YELLOW, sys.argv[1])

0 commit comments

Comments
 (0)