[Tutor] Tkinter: link button to executable

Daniel Yoo dyoo@hkn.eecs.berkeley.edu
Tue, 3 Oct 2000 09:31:03 -0700 (PDT)


>  sys.system("c:/wordpad.exe")

> The windows appear but when i press the button exe i got error message
> from the system line declaration
> 
> ...: Name Error system

Ah!  You're thinking of os.system(), not sys.system().  Easy to confuse
the two.