how to open a website in python
import webbrowser
webbrowser.open('https://www.google.co.uk/')
how to open a website in python
import webbrowser
webbrowser.open('https://www.google.co.uk/')
how to write a script to display an image in python
>>> from PIL import Image
>>> img = Image.open('test.png')
>>> img.show()
run python code on my website
#!/usr/bin/env python
# save as cgi-bin/index.py
# Python 2.7
import cgi
import cgitb; cgitb.enable()
form = cgi.FieldStorage()
html = """
<html>
<head>
</head>
<body>
<form action="index.py" name="myform" method="GET">
Enter length: <input type="text" name="length"><br />
Enter width: <input type="text" name="width"><br />
<input type="submit" value="submit">
</form>
</body>
</html>
"""
try:
length = int(form['length'].value)
width = int(form['width'].value)
area = length * width
print "Content-Type: text/html"
print
print "<p>The area is: " + str(area) + "</p>"
except KeyError:
print html
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us