The Magic 8 Ball is a toy game for fortune-telling or seeking advice. In this article, we will implement the magic 8-ball game in Python. Table of … [Read more...] about Magic 8-ball Game Written in Python
String Manipulation in Python
We use strings in Python to handle text data. In this article, we will discuss basics of python strings and string manipulation in Python. Table … [Read more...] about String Manipulation in Python
List Manipulation in Python
Overview List is one of the simplest and most important data structures in Python. Lists are enclosed in square brackets [ ] and each item is … [Read more...] about List Manipulation in Python
How to use Fabric in a development environment
Overview I earlier wrote a post on "How to use Fabric in Python", which can be found here. I received a lot of responses from that article, so I … [Read more...] about How to use Fabric in a development environment
CommandLineFu with Python
Overview One of the best methods to practice Python coding is to study some code and try them out yourself. By doing a lot of code exercises, you will … [Read more...] about CommandLineFu with Python
Port scanner in Python
This post will show how you can make a small and easy-to-use port scanner program written in Python. There are many ways of doing this with Python, … [Read more...] about Port scanner in Python
Python Resources
Python web application frameworks djangoDjango is a high-level Python Web framework.http://www.djangoproject.com/ web2pyAn open source … [Read more...] about Python Resources
Having fun with OS.Walk in Python
Overview OS.walk() generate the file names in a directory tree by walking the tree either top-down or bottom-up. For each directory in the tree … [Read more...] about Having fun with OS.Walk in Python
Google Command Line Script
Overview Todays post will show how you can make a Google Command Line script with Python (version 2.7.x) """ Note: The Google Web Search API has been … [Read more...] about Google Command Line Script
How to use Fabric in Python
What is Fabric? Fabric is a Python library and command-line tool for streamlining the use of SSH for application deployment or systems administration … [Read more...] about How to use Fabric in Python