1樓:匿名使用者
tkinter是標準的python gui庫。python與tkinter的結合提供了一個快速和容易的方法來建立gui應用程式,tkinter的提供了一個強大的物件導向的介面tk的gui工具包。
python 開啟檔案可以用open命令,例如:
##電子書txt文字
f = open('e:\\test.txt',encoding='utf-8')
raw = f.read()
2樓:
你說的是“開啟檔案對話方塊”,需要用到filedialog模組,**非常簡單:
from tkinter import *from filedialog import *root = tk()
fd = loadfiledialog(root) # 建立開啟檔案對話方塊
filename = fd.go() # 顯示開啟檔案對話方塊,並獲取選擇的檔名稱
print filename
root.mainloop()
3樓:也剛剛才符合
首先你要從tkinter中匯入filedialog這個包**如下from tkinter import filedialog,
而後你在tk()建立一個按鈕物件,
b = tk.button(self.f1, text='選擇檔案', command=self.openfile)
關鍵在按鈕要賦予一個響應事件就是指按下這個按鈕呼叫的函式,這裡是command=openfile,然後寫一個方法來作為響應,比如
def openfile():
fname = tk.filedialog.askopenfilename()
return fname
這樣就將要開啟的檔名以字串形式存在fname這個變數中了,就可以通過輸出fname得到檔案路徑
用python程式設計求1 ,用python程式設計求1 1 2 1 3 1 4 1 5 累加和,資料項小於0 1時停止
def summa summ 0 for i in range 1,100 fl 1.0 i if fl 0.1 summ fl else print the sum is summreturn sum summa 注意縮排 def iteritem limit x 1.while 1 v 1 x ...
用Python程式設計序,用Python編一個程式
不太明白是需要演算法還是程式的說.如果是演算法,您朋友的方法挺好.這不是二分法的問題麼。用python寫一個程式 50 其實這個不難,以下 做個參考吧。coding utf 8 classstudent object 自定義student類 def init self,name,score 初始化s...
怎麼用python呼叫matlab
參考以下 import matlab.engine eng matlab.engine.start matlab print eng.isprime 65537 使用matplotlib庫看看 試試matlab打包成可執行程式?matlab中怎麼呼叫python,python計算結果再返回matla...