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
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
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

def main():

draw_cats(10)
draw_cats()

if __name__ == '__main__':
main()
14 changes: 7 additions & 7 deletions printer.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import random

colors = [
"\033[91m", # Red
"\033[92m", # Green
"\033[93m", # Yellow
"-\033[94m", # Blue
"\033[95m", # Magenta
"\033[96m", # Cyan
"-\033[97m", # White
"\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"

Expand Down