我正在編寫一個輕量級webtexting應用程序,並且我試圖顯示TKinter中用於寫入消息的文本小部件中的當前字符數以webtext發送。我有此刻的代碼在下面可以看到,我使用python如何獲取Tkinter Text小部件中文本的當前長度
root = Tk()
msgLabel = Label(text="Message")
msgLabel.grid(row=0, column=0)
msg = Text(width=40, height=4, wrap="word")
msg.grid(row=0, column=1, padx=10, pady=5)
#Try to display number of characters within message to user
charCount = Label(text="Character Count: "+str(len(meg.get("1.0", 'end-1c')))
charCount.grid(row=1, column=1, pady=5, padx=5)
root.mainloop()
我想能夠顯示的字符數由用戶編寫的消息中,因爲有一個160字符數限制爲每個webtext。是否可以顯示當前的字符長度,並在插入和刪除文本時進行更新?在此先感謝