gpt4 book ai didi

python - 如何匹配元音?

转载 作者:行者123 更新时间:2023-11-28 19:51:24 25 4
gpt4 key购买 nike

我在处理一个更大程序的一个小组件时遇到了问题。基本上我需要让用户输入一个单词,并且我需要打印第一个元音的索引。

word= raw_input("Enter word: ")
vowel= "aeiouAEIOU"

for index in word:
if index == vowel:
print index

但是,这是行不通的。怎么了?

最佳答案

尝试:

word = raw_input("Enter word: ")
vowels = "aeiouAEIOU"

for index,c in enumerate(word):
if c in vowels:
print index
break

for .. in 将遍历字符串中的实际字符,而不是索引。 enumerate 将返回索引和字符,并使引用两者更容易。

关于python - 如何匹配元音?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5034786/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com