From 9e81042ffa98f4798d0fcf03981e2a47101dadd2 Mon Sep 17 00:00:00 2001 From: diya123-coder Date: Thu, 24 Apr 2025 00:36:42 -0700 Subject: [PATCH] added dice roller script --- dice_roller.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 dice_roller.py diff --git a/dice_roller.py b/dice_roller.py new file mode 100644 index 00000000..63fd6382 --- /dev/null +++ b/dice_roller.py @@ -0,0 +1,5 @@ +import random + +print("🎲 Rolling the dice...") +dice = random.randint(1, 6) +print(f"You rolled: {dice}")