Hello guys
So you just started in python programming, and want to prank your friends. Here i will teach you how to open any website on his computer using python.
In python the "import" statement is used to add a module to your project. In this case we want to add the webbrowser module.
Step 2:
This is calling the open function on your default web browser. You pass it an url in the form of a string.
Possible usages:
You can add as many websites as you want like show below
The complete code will look something like below
Step 3
Save the file as visus.py
Enjoy pranking your friends
So you just started in python programming, and want to prank your friends. Here i will teach you how to open any website on his computer using python.
Before you begin download and install python from Here
Step 1:
open notepad and typeimport webbrowser
In python the "import" statement is used to add a module to your project. In this case we want to add the webbrowser module.
Step 2:
webbrowser.open('http://SITE HERE!.com')
This is calling the open function on your default web browser. You pass it an url in the form of a string.
Possible usages:
You can add as many websites as you want like show below
webbrowser.open('http://dohackit.blogspot.com')webbrowser.open('http://google.com')
url = "http://dohackit.blogspot.com";
webbrowser.open(url)
The complete code will look something like below
import webbrowserwebbrowser.open('http://http://dohackit.blogspot.com')webbrowser.open('http://google.com')webbrowser.open('http://yahoo.com')webbrowser.open('http://facebook.com')
Step 3
Save the file as visus.py
Enjoy pranking your friends
No comments:
Post a Comment