超简单的python实现的html编辑器

有段时间删了电脑里的乱七八糟的软件,各种IDE也没了,学python的时候感觉用记事本敲代码还挺爽,就是敲完得改后缀,有点麻烦,遂用了IDLE。现在准备学web,有时候敲敲html,不想下IDE,都是写完txt改html,然后用Chrome打开,现在自己用python写了一个自动完成这个过程的:

from tkinter import *
import os
def func(text):
    with open('text.html','wb') as f:
        f.write(text.encode('utf-8'))
    os.popen('chrome text.html')
root = Tk()
root.title('myIDE')
text = Text(root)
text.pack(fill='both',expand=YES)
Button(root,text='run',command=lambda:func(text.get(0.0,END))).pack(side='right')
root.mainloop()

效果:
超简单的python实现的html编辑器_第1张图片
把给Chrome设一下环境变量,就可以用了。编写好之后点击run按钮,html就会在Chrome中打开

——一个自娱自乐的沙雕

你可能感兴趣的:(自娱自乐)