Skip to content
Open
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: 6 additions & 0 deletions 02_crowsnest/solution.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ def main():

args = get_args()
word = args.word

# Guard against empty string input (fixes IndexError)
if not word:
print("Please provide a non‑empty word.")
return

article = 'an' if word[0].lower() in 'aeiou' else 'a'

print(f'Ahoy, Captain, {article} {word} off the larboard bow!')
Expand Down