Skip to content Skip to sidebar Skip to footer

Using The Name "function" For A Variable In Python Code

Is using the word function for the name of an argument considered bad style in Python code? def conjunction_junction(function): pass # do something and call function in here T

Solution 1:

It's not a reserved keyword, so I don't see why not.

From the Style Guide

If a function argument's name clashes with a reserved keyword, it is generally better to append a single trailing underscore rather than use an abbreviation or spelling corruption. Thus class_ is better than clss. (Perhaps better is to avoid such clashes by using a synonym.)

Solution 2:

Using function is perfectly fine.

There is nothing in the style guide about it specifically. The reason that the use of type names such as str and list is highly discouraged is because they have functionality within the language. Overwriting them would obscure the functionality of the code. function on the other hand, does nothing.

I suspect func, fn, and f are used because they are all shorter than typing function ;)

Post a Comment for "Using The Name "function" For A Variable In Python Code"