のための範囲外の文字列インデックス、私は私のプログラムがリストはIndexError:もしたstatments
alpha =["a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z"]
def PARSE(inpu): #Parse and remove symbols
PARSE = list()
d = 0
intv = 0
output = 0
for i in range (len(inpu)):
intv = intv + 1
if inpu[intv] in alpha:
output = output, inpu[intv]
intv = 0
LI1 = 1
LI2 = 1
while len[output] != LI1 - 1:
PARSE.append("")
while not len[output] - 1 < LI1 or not output[LI1] == '':
PARSE[LI2 - 1] = PARSE[LI2] + output[LI1]
LI1 = LI1 + 1
last = last + 1
LI1 = LI1 + 1
LI2 = LI2 + 1
PARSE[last] = PARSE[last] + output[LI1 - 1]
done = 1
に文を分割するようにそれを作るしようとしている。しかし、私は、このエラーメッセージを指定
IndexError: string index out of range
を取得私はこの問題を解決するにはどうすればよい
if inpu[intv] in alpha:
上
?あなたのアルファのための
まだ私に同じエラーを与えた:( –