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