From 3f2db95d5563c9c2b92a0531ddee28f79f438706 Mon Sep 17 00:00:00 2001 From: Charles Date: Tue, 23 Jun 2020 09:08:16 +0200 Subject: Added a few builtin/parenthesis tests --- random_status.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 random_status.py (limited to 'random_status.py') diff --git a/random_status.py b/random_status.py new file mode 100644 index 0000000..171467f --- /dev/null +++ b/random_status.py @@ -0,0 +1,7 @@ +import sys +import random + +if __name__ == "__main__": + status = random.randrange(-2_000_000, 2_000_000) + print(status) + sys.exit(status) -- cgit