How Do You Choose Python Function Names? - Real Python
Briefly

According to PEP 8 style guidelines, Python functions should be named using lowercase letters and with an underscore separating words. This style is often referred to as snake case.
Function names should describe the actions clearly; for instance, calculate_total() is preferred over total().
Conventions like snake case for function naming in Python go beyond general naming rules, contributing to code readability and adherence to best practices.
Read at Realpython
[
]
[
|
]