views.py
def my_results(request, a, b, c): pass
urls.py
urlpatterns = [ path('', hello), path('python/', hello_python), re_path(r'^results/$', my_results), path('admin/', admin.site.urls), ]
результат my_results() missing 3 required positional arguments: ‘a’, ‘b’, and ‘c’
Request information
USER AnonymousUser
GET
Variable Value
a ‘1’
b ‘3’
c ‘5’
Ничего не могу понять …