Random-Max
Sat 17 May 2025
title: "Random Max" author: "Rj" date: 2019-04-20 description: "-" type: technical_note draft: false
import random
MAX = 8
for x in range(MAX):
val = random.randint(14, 30)
print(val)
17
21
27
30
17
22
14
20
Score: 0
Category: basics