def Compile(Reading=""):
ReturnText=""
if Reading in SpecialWords1:
return SpecialWords1[Reading]
elif Reading in SpecialCompileWords_Subjects:
return SpecialCompileWords_Subjects[Reading]
elif Reading in NormalWords or Reading in NormalWords2:
for x in range(0,len(Reading)):
if Reading[x+0,x+2] in NormalWords2:
ReturnText+=Reading
else: ReturnText+=NormalWords[Reading]
return ReturnText
else: return Reading
なのですがreturn: ReturnTextでTabError: inconsistent use of tabs and spaces in indentationとなります。どうしたらいいのでしょうか。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2016/10/29 10:52