下列程序⽤于统计字符串中元⾳字母(a, e, i, o, u) 的数量。
s = "hello world"
vowels = "aeiou"
count = sum(1 for c in s if c == vowels)
print(count)
正确
错误