We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2df6a69 commit c6d0c31Copy full SHA for c6d0c31
ch09-lists-tuples-and-dictionaries/5-challenge-wax-poetic.py
@@ -93,7 +93,7 @@ def make_poem():
93
# Pull one adverb
94
adv1 = random.choice(adverb)
95
96
- if "aeiou".find(adj1[0]) != -1: # first letter is a vowel
+ if "aeiou".find(adj1[0]) != -1: # First letter is a vowel
97
article = "An"
98
else:
99
article = "A"
0 commit comments