Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -159,4 +159,5 @@ cython_debug/
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
#.idea/
.DS_Store
6 changes: 3 additions & 3 deletions catprinter.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

def draw_cat():
cat = r"""
/\_/\
( o.o )
> ^ <
/\_/\ /\–/\ /\_/\
( o.o ) |.>ω<.| ฅ •ﻌ• ฅ
> ^ < \___/ \___/
"""
return cat

Expand Down
11 changes: 11 additions & 0 deletions printer.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
import random

colors = [
"\033[91m", # Red
"\033[92m", # Green
"\033[93m", # Yellow
"\033[94m", # Blue
"\033[95m", # Magenta
"\033[96m", # Cyan
"\033[97m", # White
]
reset_color = "\033[0m"

colors = [
"\033[91m", # Red
"\033[92m", # Green
Expand Down