Preguntas etiquetadas con python

125
¿Qué hace "mro ()"?

En django.utils.functional.py: for t in type(res).mro(): # <----- this if t in self.__dispatch: return self.__dispatch[t][funcname](res, *args, **kw) No entiendo mro(). ¿Qué hace y qué significa

125
Agregar parámetros a la URL dada en Python

Supongamos que me dieron una URL. Puede que ya tenga parámetros GET (p http://example.com/search?q=question. Ej. ) O puede que no (p http://example.com/. Ej .). Y ahora necesito agregarle algunos parámetros {'lang':'en','tag':'python'}. En el primer caso voy a tener

125
¿Cómo inicializo la clase base (super)?

En Python, considere que tengo el siguiente código: >>> class SuperClass(object): def __init__(self, x): self.x = x >>> class SubClass(SuperClass): def __init__(self, y): self.y = y # how do I initialize the SuperClass __init__ here? ¿Cómo inicializo el SuperClass...

125
Python group by

Suponga que tengo un conjunto de pares de datos donde el índice 0 es el valor y el índice 1 es el tipo: input = [ ('11013331', 'KAT'), ('9085267', 'NOT'), ('5238761', 'ETH'), ('5349618', 'ETH'), ('11788544', 'NOT'), ('962142', 'ETH'), ('7795297', 'ETH'), ('7341464', 'ETH'),...

125
¿Qué es un 'punto final' en Flask?

La documentación del Frasco muestra : add_url_rule(*args, **kwargs) Connects a URL rule. Works exactly like the route() decorator. If a view_func is provided it will be registered with the endpoint. endpoint – the endpoint for the registered URL rule. Flask itself assumes the name of the view...