We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b93bc4 commit deb4b89Copy full SHA for deb4b89
implement-cowsay/cow.py
@@ -1,7 +1,6 @@
1
import cowsay
2
import argparse
3
4
-# cowsay.cow(" ".join(sys.argv[1:]))
5
6
7
parser = argparse.ArgumentParser(prog="cow.py", description="Make animals say things")
@@ -13,8 +12,5 @@
13
12
char_name = args.animal
14
message = " ".join(args.message)
15
16
-# cowsay_func = getattr(cowsay, char_name)
17
-# cowsay_func(message)
18
-
19
20
print(cowsay.get_output_string(args.animal, message))
0 commit comments