feat: add script to generate and print a random number between 1 and 100
This commit is contained in:
2025-11-04 17:32:26 -05:00
parent eca03e0e11
commit b5a2e216f2

3
Scripts/random_number.py Normal file
View File

@@ -0,0 +1,3 @@
from random import randint as rand
num = rand(1, 100)
print(num)