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…]
Archives for January 2012
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…]