Basic Operations
Basic Operations
Example
import webbrowser
webbrowser.open('http://net-informations.com', new=2)
Opening Up Notepad
The code below shows up to open up notepad on a
Windows PC.
import subprocess
subprocess.Popen('C:\\Windows\\System32\\notepad.exe')
Opening Up Wordpad
The code below shows how to open up
Wordpad on a Windows computer.
import subprocess
subprocess.Popen('C:\\Windows\\System32\\write.exe')
playsound
Type the following command in the terminal to install the gTTS API.
pip install gTTS