snake_case

« Back to Glossary Index

Also known as lower_case_with_underscores. A programming convention for naming variables and functions in Python. All letters are lowercase, and words are separated by underscores as needed for readability.

Using different naming conventions for different programming structures helps to differentiate them and will make your code both more readable and more understandable to other programmers.

« Back to Glossary Index