Learn Before
Concept
Additional Naming Conventions
There are further conventions for naming variables:
-If you are naming something with multiple words, use the underscore character in place of spaces, i.e. average_number
-If you want to use a variable name that is the same as a Python Keyword, place the underscore character after the variable, i.e. list_
0
1
Updated 2021-05-22
Tags
Python Programming Language
Data Science