How can i pass optional arguments in Django view

Viewed 30100

I have one function in view like

def  calculate(request , b)

I want that this function should work even if b is not passes to it

4 Answers
Related