0
因此,我正在做一個項目,其中有一個英文單詞列表,並希望它檢查我寫的單詞是否在列表中,並告訴我它是否是英文單詞,我沒有知道如何做到這一點,但是這就是我應該做的,所以我要求你的幫助檢查單詞是否是英語Python
text = open("dict.txt","r")
#Opens the dict.txt file I have and reads it
word = input("Type a word to check if it's english.")
#Type in a word to check if is english or not
if(word in text == true):
print(word, "Is in English.")
elif(word in text == false):
print(word, "Is not in English.")
#Check if word is true or false in the dict.txt and print if it is english or not.
你需要格式化你的問題 –
在python中,它是大寫的「True」和「False」。 – Will
對不起,我總是在嘗試時遇到某種錯誤,所以我不知道該怎麼辦,謝謝幫我糾正它。 – Kobbi