# Snake Case - Note Created: 2022-02-10 @ 19:52 --- Snake case is a text formatting convention in which words are separated by underscore characters and all letters are lowercase. For example, should I want to name a variable for a list of keywords, proper use of snake case formatting might name that variable `list_of_words`. In [[00 - Python Map | Python]] most variables are named using this convention. --- #### Related #programming #formatting - [[Camel Case]]