Ok so, question about opening an application from python..is there a command that will force an app to open, while at the same time leaving the tkinter GUI open? The app I am trying to open is Snes9x.
import os
from tkinter import *
try:
import Tkinter as tk
from urllib2 import urlopen
except ImportError:
import tkinter as tk
from urllib.request import urlopen
def videoGame():
extensions =('.src', '.srm')
for data in os.listdir('/SNES/SNES Roms'):
if data.endswith(extensions):
os.path.normpath(r'/Users/SirPrinceKai/Applications/Snes9x')
return(videoGame)