Retour au sujet

Avatar de Girsanov Girsanov
>>Factom
Cimer Girnasov pour l'explication, je connaissais pas cette lib et je savais pas pour le tas :cimer:

Tiens un petit script https://image.noelshack.com/minis/2017/31/5/1501863678-risitas596bestreup.png

#!/usr/bin/env python
#-*- coding: utf-8 -*-

import multiprocessing as mp

def test(n):
if str(n**2016)[:4] == "2016":
print(n)

n_min = 10000
n_max = 1000000

with mp.Pool() as p:
p.map(test, range(n_min, n_max+1))
#563751