summaryrefslogtreecommitdiff
path: root/progs/a465.py
blob: cfd850dc21f15acc47e5681bfb9e60e8e7a712ba (plain)
1
2
3
def snake_to_camel(word):
        import re
        return ''.join(x.capitalize() or '_' for x in word.split('_'))