Domande taggate «max»

Valore massimo. Il più grande, il più grande, il più grande.

3
Perché max è più lento dell'ordinamento?
Ho scoperto che maxè più lento della sortfunzione in Python 2 e 3. Python 2 $ python -m timeit -s 'import random;a=range(10000);random.shuffle(a)' 'a.sort();a[-1]' 1000 loops, best of 3: 239 usec per loop $ python -m timeit -s 'import random;a=range(10000);random.shuffle(a)' 'max(a)' 1000 loops, best of 3: 342 usec per loop Python …


3
Come eseguire SELECT MAX in Django?
Ho un elenco di oggetti come posso eseguire una query per fornire il valore massimo di un campo: Sto usando questo codice: def get_best_argument(self): try: arg = self.argument_set.order_by('-rating')[0].details except IndexError: return 'no posts' return arg rating è un numero intero

1
Python: profondità massima di ricorsione superata
Ho il seguente codice di ricorsione, ad ogni nodo chiamo query sql per far sì che i nodi appartengano al nodo padre. ecco l'errore: Exception RuntimeError: 'maximum recursion depth exceeded' in <bound method DictCursor.__del__ of <MySQLdb.cursors.DictCursor object at 0x879768c>> ignored RuntimeError: maximum recursion depth exceeded while calling a Python object …

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.