I want to run / open a specific .txt document or a .html web page at the end of a process. I've looked everywhere for the solution to no avail. The closest I've come to what I need is:
import subprocess
subprocess.call(["notepad.exe"])
but as you already may know, this only opens a blank notepad instance, which is not what I want. Any ideas?