0%

Python学习笔记-图形界面

Python支持多种图形界面的第三方库,包括:Tk,Qt,GTK等。Python自带的是支持Tk的Tkinter。

turtle

好可爱的绘图库…

1
2
3
4
width(5) # 设置笔刷宽度
pencolor('red') # 设置颜色
forward(200)
right(90)

python_turtle_tree

Tkinter

廖雪峰的博客讲的不清楚啊…

抄的代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from tkinter import *


class Application(Frame):
def __init__(self, master=None):
Frame.__init__(self, master)
self.pack()
self.createWidgets()

def createWidgets(self):
self.helloLable = Label(self, text='Hello, world!')
self.helloLable.pack()
self.quitButton = Button(self, text='Quit', command=self.quit)
self.quitButton.pack()


app = Application()
app.master.title('Hello, world')
app.mainloop()

将来学这个吧。