有python代码:
window = tk.Tk() t = tk.Text(window2, height=15, width=65) button = tk.Button(window,text='获 取 IP', command=getIP,width=15, height=2) def getIP(): # randomIP()的作用是从数据库获取一个ip地址 IP = t.insert('end',randomIP())
运行以后是这样的:
很显然,ip地址粘在一起了,如果我们要每读取一次ip就换行一次,那只需要加入语句:t.insert(tk.INSERT, '\n')即可
如下所示:
window = tk.Tk() t = tk.Text(window2, height=15, width=65) button = tk.Button(window,text='获 取 IP', command=getIP,width=15, height=2) def getIP(): # randomIP()的作用是从数据库获取一个ip地址 IP = t.insert('end',randomIP()) t.insert(tk.INSERT, '\n')
修改后的效果: