-1
我相當新的python編程與它的類的概念是非常不同的像java,c + +,c#語言......還有Tkinter庫。我正在嘗試做一些基本的事情。首先創建一個框架,允許用戶輸入一個字符串值;將該字符串值存儲在內存中,然後退出該框架。創建一個新的文件瀏覽器,使您可以選擇特定的文件,然後使用之前存儲在內存中的字符串重命名所選文件。我沒有任何特定的代碼片段來做這件事,但我有兩段代碼可以結合起來給我我想要的結果。你如何一個接一個打開兩個tkinter Windows?
enter code here
# This is the snippet for the input user
def printtext():
global e
string = e.get()
return string
from Tkinter import *
root = Tk()
root.title('Name')
e = Entry(root)
e.pack()
e.focus_set()
b = Button(root,text='okay',command=printtext)
b.pack(side='bottom')
root.mainloop()
# This is for the file browser
import Tkinter,tkFileDialog
root = Tkinter.Tk()
file = tkFileDialog.askopenfile(parent=root,mode='rb',title='Choose a file')