Update snippets/snake.md

Co-Authored-By: Angelos Chalaris <chalarangelo@gmail.com>
This commit is contained in:
Riadh Fezzani
2019-10-01 14:46:42 +02:00
committed by GitHub
parent 83f1835ef6
commit 76ead08704

View File

@ -5,7 +5,7 @@ tags: string,regexp,intermediate
Converts a string to snake case.
Break the string into words and combine them adding underscore `_` as a separator, using a regexp.
Break the string into words and combine them adding `_` as a separator, using a regexp.
```py
import re