Which name is given a function that is separated by undescore. function_name.
And to a function like FunctionName? and what would be the right one for python and ANSI C.??
Which name is given a function that is separated by undescore. function_name.
And to a function like FunctionName? and what would be the right one for python and ANSI C.??
Function names like func_one
are written in snake case, while functions written like FunctionOne
are written in Pascal case, which is a subset of Camel case where the first letter is also uppercase.
Thanks to @abelenky for pointing out the initial error.
function_name
is called a Snake Case. It is the recommended casing for Python.
See this answer for more enlightenment.