snake_case convention

A type of writing in Programming where you use underscores (_) between each word in a compound word or a phrase. It is useful for Text-based programming because sometimes you Need to name something that needs more than one word and you can’t have spaces. For example: Sprite_running_Function (also see camelCase convention). Note this is the preferred Convention for Python

Andrew Thawley Avatar