2d6 Dice Roller

A python snippet to simulate 2d6.

import numpy as np

# Rolling two six-sided dice using numpy's random function
dice_rolls_true_random = np.random.randint(1, 7, size=2)
print(dice_rolls_true_random)