python的tkinter中的text文本框控件的操作。

python中的tkinter的text控件怎么通过变量插入内容,而且不能通过键盘输入内容,只能通过一个变量输入和显示内容?
例如以下这段代码(该代码是在一个类中的函数里):

window_h_p.RowSInsert=tk.Text(window_h_p,width=18,height=15, state = tk.DISABLED).place(x=10,y=100)  #只读多行文本

information='这是一个变量' #用于插入到上面的text控件中,并且显示在一个图形化界面窗口(已做好)
#请问:如何将上面的这个information变量输入到上面的window_h_p_RowSInsert的text控件中,前提是#这个text空间不可以手动输入,只能通过读取information的值来输入

麻烦采纳一下哟,谢谢

from tkinter import *
def insert(t,value):
    t.config(state=NORMAL)
    t.insert("end",value)
    t.config(state=DISABLED)
win = Tk()
win.geometry("400x400")
text = Text(win, width=20, height=10, undo=True, autoseparators=False)
text.pack()
input = Entry(win, bd=5)
input.pack()
btn=Button(win,text="insert",command=lambda: insert(text,input.get()))
btn.pack()
win.mainloop()