即時通訊學習Python,我們正在上一個關於序列的課程,我們已經給出了這個示例代碼,但是我有一些關於它的問題;Python序列示例
word = input("Word? ")
letter = input("Letter? ")
i = 0
found = False
while not found and i != len(word):
found = word[i] == letter
i = i + 1
if found :
print("letter ", letter, " found in word ", word, " at position ", i -1)
else:
print("letter ", letter, " not found in word ", word)
在該行會發生什麼發現=字[I] ==信
爲什麼print語句州發現了一封信,在I-1
我這對我來說是非常新的,所以如果你能夠ELI5那會非常有幫助。 謝謝先進。
非常感謝你這幫助了很多。 – Codeman131
不客氣。如果這回答了您的問題,請考慮標記答案。 –