Project Ideas
Learning to program using a new language can become boring for experienced programmers. Though in python it is actually not the case, doing some mini-projects becomes interesting and accelerates the learning. Here are some of project ideas for newbie’s…
| ID | Name | Description | Objective | Code Snippet |
| 1 | FileNamePrefixSuffixer | A simple command line tool to prefix and/or suffix name of a file/s within a directory /w subdirectory. Also provide option to just preview the change. |
To learn file handling mechanism and parsing command line arguments using OptParser. Very basic use of OptParser |
Work in progress |
| 2 | FileExtChanger | A simple command line tool to change the extension of a file/s within a directory /w subdirectory. Should allow wild-card matching similar to unix shells. |
To learn file handling mechanism, parsing command line arguments using OptParser and using fnmatch module. |
Work in progress |