Python: list.index(元素) 搜尋元素位於list中的那一個index

加入好友
加入社群
Python: list.index(元素) 搜尋元素位於list中的那一個index - 儲蓄保險王

code:

ask = ["您好嗎", "你是誰"]
ans = ["我很好", "我是聊天機器人"]

while True:
    ask_input = input("請輸入你的問題(Q or q to exit):\t")
    if ask_input.lower() == "q":
        break
    if ask_input in ask:
        idx = ask.index(ask_input)
        print(ans[idx])

輸出結果:

Python: list.index(元素) 搜尋元素位於list中的那一個index - 儲蓄保險王

做出簡單版aiml 模組的效果

推薦hahow線上學習python: https://igrape.net/30afN

加入好友
加入社群
Python: list.index(元素) 搜尋元素位於list中的那一個index - 儲蓄保險王

儲蓄保險王

儲蓄險是板主最喜愛的儲蓄工具,最喜愛的投資理財工具則是ETF,最喜愛的省錢工具則是信用卡

You may also like...

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *