Python like any other language allows file handling and I/O functions. There are many ways with which we can approach file handling and input output processing. In this tutorial we’ll see how to work with I/O functions of python. We’ll also take a look at the ways with which python allows us to handle files. [Read more…]
Archives for 2012
Regular Expressions in Python
A regular expression in python is a special module that helps filter sequence of strings, characters and symbols using specialized syntax written in a particular pattern. Like any other programming language, regular expression module βreβ in python allows you to process unlimited amount of strings that passes regular expression requirements. [Read more…]
Python Date and Time
Python can handle date and time on your system in multiple ways. Depending on your operating system the method to access the system time and date will vary. Code in this tutorial is tested on ubuntu linux and windows operating system. [Read more…]