- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我是一个完全的初学者。我正在尝试制作一个可以在输入字符串中找到元音的程序。请帮忙!
#python 3.4.3
z = ['a','e','i','o','u']
n = input('Input string')
a = list(n)
m = []
for i in range(len(a)):
for j in range(len(a)):
if z[i] == a[j]: # try to match letter by letter
print('vowel found')
m.append(z[i])
else:
continue
print(m)
输出:
Error:
line 12, in <module>
if z[i] == a[j]:
IndexError: list index out of range
最佳答案
你可以尝试这样的事情:
vowels = 'aeiou'
string = input('Input string > ')
vow_in_str = []
for char in string:
if char in vowels:
vow_in_str.append(char)
print(vow_in_str)
注意:为您的变量赋予更具表现力的名称以及在 for 循环中遍历元素而不是索引(只要有可能)会更“pythonic”。
关于python - 元音查找器,错误 : list index out of range,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33115788/
我试图在 haskell 上创建一个函数,我知道该函数的定义如下: justWithA : [Char] -> Bool justWithA [] = True justWithA (x:xs) |
我试图在 haskell 上创建一个函数,我知道该函数的定义如下: justWithA : [Char] -> Bool justWithA [] = True justWithA (x:xs) |
我正在尝试计算字符串中元音的总数。我正在使用 strlen 来获取字符串的总长度,但是当我尝试按每个字母对字符串进行计数时,它说 C++ 禁止比较。所以我假设我的 if 语句有问题。 #include
Task You are given a string . It consists of alphanumeric characters, spaces and symbols(+,-). Your
我刚刚开始用 C 语言编程,我必须创建一个程序来计算字符串有多少个元音。到目前为止我有这个: int a; int len = strlen(text)-1 for(a=0;a==len;++a){
尝试学习 Python 中的正则表达式以查找具有连续元音-辅音或辅音-元音组合的单词。我将如何在正则表达式中执行此操作?如果无法在 Regex 中完成,是否有一种在 Python 中执行此操作的有效方
我想输入 dagger-alif、dagger-waw 和 dagger-ya(也称为微型 alif、微型哇和微型 ya)作为 alif-wasla 使用 PC 阿拉伯语键盘。这些标记被使用帮助读者发
我正在尝试创建一个将文件上传到 FTP 服务器的批处理文件。除了一个特定文件夹的名称中包含突变/元音外,一切正常(无法更改。也就是文件夹名称中包含 ö。)。 我的问题是:有哪些选择可以实现这一目标?
我是一名优秀的程序员,十分优秀!