mem_test_dico.py

Created by cent20

Created on April 14, 2022

240 Bytes


from random import randint
score = {} 

for i in range(66666):
  try:
    score[i] =randint(1,9999)
  except:
    print(i, "enregistrement dans le \ndico avant de saturer \nla mémoire de 32ko (epsilon18)")
    break