Joined January 2013
·

Luiz Gustavo

Maringá
·
·


import re
def cameltounderscore(string):
def repl(match): return '_%s' % match.group(0).lower()
return re.sub('[A-Z]', repl, string)[1:]
</pre>
Achievements
60 Karma
0 Total ProTip Views