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 16302af commit 32c722cCopy full SHA for 32c722c
public/data/python.json
@@ -34,7 +34,7 @@
34
"description": "Counts the number of vowels in a string.",
35
"code": [
36
"def count_vowels(s):",
37
- " vowels = 'aeiouAEIOU'",
+ " vowels = 'aeiou'",
38
" return len([char for char in s.lower() if char in vowels])",
39
"",
40
"# Usage:",
0 commit comments