From 5982f04ab2286df98db318fbb2ed6885ef5c37f9 Mon Sep 17 00:00:00 2001 From: goodven152 Date: Fri, 10 Mar 2023 16:23:13 +0300 Subject: [PATCH] add rand module --- pythom.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pythom.py b/pythom.py index 442659b..eb10c34 100644 --- a/pythom.py +++ b/pythom.py @@ -1 +1,4 @@ +from math import rand + +print(rand(0,100)) print("Hello world!") \ No newline at end of file