我正在尝试在某些单词中添加带有元音的文本(不是像 ie 或 ei 这样的连续元音),例如:
词:“奇怪”
在元音之前添加的文本:'ib'
结果:'wibeird'
因此,在元音“e”之前添加了文本“ib”。请注意它没有用 'ib' 替换 'i',因为当元音是连续的时,我不希望它添加文本。
但是,当我这样做时:
词:“狗”
在元音之前添加的文本:'ob'
结果:'doboog'
正确的结果应该是:'dobog'
我一直在尝试调试我的程序,但我似乎无法弄清楚逻辑以确保它正确打印“wibeird”和“dobog”。
这是我的代码,先用 'weird.
first_syl = 'ib'
word = 'weird'
vowels = "aeiouAEIOU"
diction = "bcdfghjklmnpqrstvwxyz"
empty_str = ""
word_str = ""
ch_str = ""
first_vowel_count = True
for ch in word:
if ch in diction:
word_str += ch
if ch in vowels and first_vowel_count == True:
empty_str += word_str + first_syl + ch
word_str = ""
first_vowel_count = False
if ch in vowels and first_vowel_count == False:
ch_str = ch
if word[-1] not in vowels:
final_str = empty_str + ch_str + word_str
print (final_str)
我正在使用 Python 3.2.3。另外我不想使用任何导入的模块,试图这样做以了解python中字符串和循环的基础知识。