Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 tkinter 中创建一个程序,该程序允许人们将日志文件重命名为在文本输入框中键入的任何内容。然而,这不是计划。
编辑感谢布莱恩奥克利。
我已经将重命名功能从属于一个按钮,但是我的新问题是内容的值是一组奇怪的数字。每次我运行重命名函数时,这些似乎都是随机生成的。
这些数字看起来像
44499952得到
44452520得到
46401376get
46400496get
44688048get
44697440get
谁能帮助或解释这些数字的含义?
看看这段代码:
newname_ent = Entry(self,width = 50,) contents = newname_ent.get()
在创建小部件和获取值之间,用户似乎不太可能在毫秒左右的时间内输入内容。
您需要创建一个按钮或设置一个事件绑定,以便在用户有机会输入一些信息后调用一个函数。该函数是您放置代码以进行重命名的地方。