本文实例讲述了Python基于Tkinter实现的记事本。分享给大家供大家参考。具体如下:
from Tkinter import *
root = Tk('Simple Editor')
mi=StringVar()
Label(text='Please input something you like~' ).pack()
te = Text(height = 30,width =100)
te.pack()
Label(text=' File name ').pack(side = LEFT)
Entry(textvariable = mi).pack(side = LEFT)
mi.set('*.txt')
def save():
t = te.get('0.0','10.0')
f = open(mi.get(),'w')
f.write(t)
Button(text = 'Save' , command = save).pack(side = RIGHT)
Button(text = 'Exit' , command = root.quit).pack(side = RIGHT)
mainloop()
希望本文所述对大家的Python程序设计有所帮助。
您可能感兴趣的文章:python3.5使用tkinter制作记事本利用Python开发实现简单的记事本python使用wxpython开发简单记事本的方法使用python3.5仿微软记事本notepadPython 字典(Dictionary)操作详解python中的字典详细介绍Python中字典创建、遍历、添加等实用操作技巧合集Python字符串、元组、列表、字典互相转换的方法python实现给字典添加条目的方法Python使用字典实现的简单记事本功能示例