Skip to content

Commit 5ab4298

Browse files
Merge pull request #2578 from Saavi2476/main
Python Main
2 parents a09c1a7 + a4e5613 commit 5ab4298

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-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])

example.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Change from feature-branch

0 commit comments

Comments
 (0)