我正在尝试编写一个代码,它只是在给定的任何单词的每个辅音前面加上一个“o”,我不知道从哪里开始,我只是得到了错误"TypeError: string indices must be integers, not str"
k = list('b' + 'c' + 'd' + 'f' + 'g' + 'h' + 'j' + 'k' + 'l' + 'm' + 'n' + 'p' + 'q' + 'r' + 's' + 't' + 'v' + 'w' + 'x' + 'z')
for bok in k:
text = list(raw_input("Give a phrase to code: "))
print bok["0"]