Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
January 22, 2022 12:31 pm GMT

Open Any application from your laptop using Python

Step 1: Install python IDLE
Step 2: type below commands

  1. Import subprocess
  2. subprocess.call(AppPath//AppName.exe)
Python 3.9.1 (tags/v3.9.1:1e5d33e, Dec  7 2020, 17:08:21) [MSC v.1927 64 bit (AMD64)] on win32Type "help", "copyright", "credits" or "license()" for more information.>>> import subprocess>>> subprocess.call('cmd.exe')

Eg 1: Open Mozilla from your laptop

subprocess.call(['C:\Program Files\Mozilla Firefox\\firefox.exe'])

Original Link: https://dev.to/sureshayyanna/open-any-application-from-your-laptop-using-python-4eeg

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To