You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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'))