Skip to content
Advertisement

python function parameter control

I have a function called “getBooks”, and this function is actually a combination of 2 functions. one function must work without taking the ‘name’ parameter, the other must work by taking the ‘name’ parameter because i have to change the sql template according to the ‘name’ parameter. how can i provide that?

Advertisement

Answer

You can specify a default parameter of name to be None, and then treat the variable according to its type:

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement