1 2 3 4 5
from django.urls import include, path urlpatterns = [ path('', include([(r'^tuple/$', lambda x: x)])), ]