pastebin

Paste #82721: python windows

#!/usr/bin/python
from tkinter import *
import os

root=Tk()

def mm():
	n='explorer d:'
	os.system(n)

def nn():
	m='explorer c:'
	os.system(m)

b1=Button(root,text='mm',command=mm)
b2=Button(root,text='nn',command=nn)
b1.pack()
b2.pack()

root.mainloop()

Private
Wrap long lines

2 + 4 =