這是我的代碼:如何從另一個變量中的用戶輸入中找到一個單詞?
a = ('the', 'cat', 'sat', 'on', 'a', 'mat')
for i,j in enumerate(a):
data = (i, j)
print (data)
word = input('Type a word out of this sentence - \'The cat sat on a mat\' : ')
word = word.lower()
print(word.find(data))
這是我的代碼,基本上,當從句子中的詞彙,用戶類型,我想找到data
索引位置和字,然後打印。 請你能幫我做到這一點很簡單,因爲我只是一個初學者。謝謝:)(對不起,如果我沒有解釋得很好)
謝謝你,我真的很明白這一點 –