本次想要寻找python在windows的交互方式,
想要获得一种可以弹出的提示窗口,所以找到了如下的一段代码,mark一下。

弹出hello world的提示窗口
#coding=utf-8

"""
Fuction:print something
Author:zhangdaoxuan
Date:2018-01-06
"""
import Tkinter
import tkMessageBox

def show():
    tkMessageBox.showinfo(title='say hello', message='hello world')

def creatfram():
    top = Tkinter.Tk()
    b = Tkinter.Button(top, text="say hello", command=show)
    b.pack()
    top.mainloop()

creatfram()

 

本次内容涉及到Tkiner以及tkMessageBox的用法,当前只是在网上查到的相关的一些知识。
明天深入学习Tkinter的用法