I'm a newbie. >From the documentation, url mapping is done like this
URL: default/f/a/b Controller: def f(): x = request.argument(0) ## a y = request.argument(1) ## b Why can we simplify it with this: def f ( x, y ): ... such that a and b are automatically assigned to x and y?

