#!/usr/bin/python#coding=utf-8'''Created on 2017年11月2日 from home @author: James zhan ''' from functools import partialimport Tkinter root=Tkinter.Tk()MyButton=partial(Tkinter.Button,root,fg='white',bg='blue')b1=MyButton(text='Button 1')b2=MyButton(te…