In the following programs you will learn that how to run specific computer application using python programming language.
import os
print("Opening notepad application")
os.startfile("notepad.exe") #it opening NotePad.
import os
print("Opening C directory")
os.startfile("C://") #it opening 'C' Drive.
import subprocess #you can also write like 'subprocess.call(["notepad.exe"])'.
print("Opening notepad application")
subprocess.call("notepad.exe")
import webbrowser
print("Opening https://google.com website on default browser")
webbrowser.open("https://google.com")