From e3bc5efd7254ee69b689d6e5d36c20ebdf307429 Mon Sep 17 00:00:00 2001 From: Yurii Mandrik Date: Fri, 27 Jan 2023 15:31:34 +0200 Subject: [PATCH] repo: replace the cow with a platypus --- cowsay.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/cowsay.py b/cowsay.py index c08ef57..e812c08 100644 --- a/cowsay.py +++ b/cowsay.py @@ -11,11 +11,11 @@ def cowsay(str, length=40): def build_cow(): return """ - \ ^__^ - \ (oo)\_______ - (__)\ )\/\\\\ - ||----w | - || || + \ W__---------______ + \ (o)| (o) | + \ _____| |_--------. + '----L_________________|--_______| + J L J L """ def build_bubble(str, length=40): @@ -61,3 +61,5 @@ def get_border(lines, index): sys.exit(0) print (cowsay(sys.argv[1])) + +