C++ 、Python都是⾼级编程语⾔ ,它们每条语句的执⾏最终都要通过机器指令来完成 。 ( )
s = "hello world"
vowels = "aeiou"
count = sum(1 for c in s if c in vowels)
print(count)
正确
错误