对于python的帮助,要是如果是非方法,可以使用如同help(“keywords”),help("if")来找到帮助;
如果是方法或者类,直接可以使用help(tkinter),help(tkinter.Lable.pack)这样的方式来寻找到帮助。在python3之中。