我正在尝试制作一个有损文本压缩程序,从输入中删除所有元音,除非元音是单词的第一个字母。我一直在第 6 行收到此“字符串索引超出范围”错误。请帮忙!
text = str(input('Message: '))
text = (' ' + text)
for i in range(0, len(text)):
i = i + 1
if str(text[i-1]) != ' ': #LINE 6
text = text.replace('a', '')
text = text.replace('e', '')
text = text.replace('i', '')
text = text.replace('o', '')
text = text.replace('u', '')
print(text)
温温酱
慕哥9229398
GCT1015
相关分类