5 lines
170 B
Python
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'))
|