I wanna open pdf file from python console, I can do it with os.system(filename), it will open in adobe reader, but the problem is that os.system al
os.system(filename)
os.system
Try:
subprocess.Popen([file],shell=True)