Overview This script will calculate the average of three values. Make sure to put in "int" before the raw_input function, since we are using … [Read more...] about Python Code: Calculate the average score
Code Snippets
Review our python code snippet articles below. We have covered so many examples it may take you awhile to browse them all. Feel free to use our search for a specific python coding example.
Python Calendar : Show calendars
This script will ask for an input of a year. It will then take that input and return the calendar for that entire year. import calendar print "Show a … [Read more...] about Python Calendar : Show calendars
Urllib2 – User Agent
Overview This post will show how to add headers to a HTTP request. By default urllib2 identifies itself as Python-urllib/2.7 : GET / HTTP/1.1" … [Read more...] about Urllib2 – User Agent
Python Join Examples
Overview This post will show some examples of the Python join method. What is important to remember is that the character that joins the elements is … [Read more...] about Python Join Examples
Check your external IP address
Overview This is a simple Python script to check which external IP address you have. First we are importing the urllib and re modules. Check your IP … [Read more...] about Check your external IP address
Python Hangman Game
In Python, we can create simple games very quickly. In this article, we will discuss the implementation of the Python Hangman Game. Table of … [Read more...] about Python Hangman Game
Python Command Line IMDB Scraper
Overview This script will ask for a movie title and a year and then query IMDB for it. Command Line IMDB Scraper First step is to import the necessary … [Read more...] about Python Command Line IMDB Scraper