我創建了一個學習機器人,創建一個文件到數據庫,但插入錯誤,可以幫助我嗎?蟒蛇 - 插入錯誤
代碼:
#kernel now ready for use
while True:
if mode == "voice":
response = listen()
else:
response = raw_input("Say: ")
if response == "aprender":
learn = raw_input("Learn: ")
f = open("database.aiml", "r")
contents = f.readlines()
f.close()
#ERROR HERE>> contents.insert("1", "<category>\n<pattern>*</pattern>\n<template>\n", learn, "</template>\n</category>\n")
f = open("database.aiml", "w")
contents = "".join(contents)
f.write(contents)
f.close()
什麼是錯誤您收到? – umutto
Python的關閉,當我嘗試使用學習:contents.insert( 「1」, 「 \ n * \ n \ n」,學習 「 \ n \ n」) –
請(重新)閱讀「[問]」,然後[編輯]你的問題提供[mcve],包括錯誤消息和整個堆棧跟蹤(假設有一個)。 –