programming-examples/python/Regular_Expression/Convert snake case string to camel case string.py
2019-11-15 12:59:38 +01:00

5 lines
170 B
Python

def snake_to_camel(word):
import re
return ''.join(x.capitalize() or '_' for x in word.split('_'))
print(snake_to_camel('python_exercises'))