List Built-In Methods The data type "List" has several built-in methods. s = ['h','e','l','l','o'] #create a list s.append('d') … [Read more...] about Built-in List Methods in Python
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
Overview This is a Python script of the classic game "Hangman". The word to guess is represented by a row of dashes. If the player guess a letter … [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
Python Modules
This is a new series of articles here at Python for beginners, that are supposed to be a starting point for completely beginners of Python. See it as … [Read more...] about Python Modules
Strings Built-In Methods
Strings Built-In Methods In this post I want to show what you can do with the built-in methods for python Strings. Let's first create a string with … [Read more...] about Strings Built-In Methods