-
-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
London | Elhadj Abdoul Diallo| Module-Tools | WEEK4 - Implement-cowsay #39
base: main
Are you sure you want to change the base?
Conversation
…ion and message input
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looking good - I left a few questions to ponder :)
implement-cowsay/cow.py
Outdated
import argparse | ||
|
||
parser = argparse.ArgumentParser(description="Make animals say things") | ||
parser.add_argument('--animal', choices=cowsay.char_names, help="The animal to be saying things", default="cow") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's not a problem, but is a bit unusual to have mixed quotes (some of the strings on this line are wrapped in '
s and others "
s) - is there a reason to prefer one over the other? Or a reason you used different ones here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No reason to be honest. Python accept both. I know I should pick one and be consistent with it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Makes sense :) Personally I prefer "
s because it's more often that I write a string containing a '
than a "
, e.g. I will often write a string literal like "I don't know"
but I less often write a string literal like 'I said "hello"'
Learners, PR Template
Self checklist