Using Python's built-in defaultdict we can easily define a tree data structure:
def tree(): return defaultdict(tree)That's it!
| #!/usr/bin/python | |
| # -*- coding: utf-8 -*- | |
| import xlrd | |
| import xlwt | |
| from optparse import OptionParser | |
| import datetime | |
| """ | |
| Merges excel files with multiple sheets with identical header lines into |
Using Python's built-in defaultdict we can easily define a tree data structure:
def tree(): return defaultdict(tree)That's it!
| This playbook has been removed as it is now very outdated. |
| var render = hexo.render; | |
| /** | |
| * alert tag | |
| * | |
| * Syntax: | |
| * {% alert caption [style] %} | |
| * Alert string | |
| * {% endalert %} | |
| */ |
| # Compiled source # | |
| ################### | |
| *.com | |
| *.class | |
| *.dll | |
| *.exe | |
| *.o | |
| *.so | |
| # Packages # |