====== NumPy ====== ===== Random ===== from numpy import random # # [3 linhas] # [0,100] | [5 nĂºmeros por linha] # | | | x = random.randint(100, size=(3, 5)) Resultado: [[85 65 88 21 84] [23 99 64 0 92] [24 87 79 6 73]]