summaryrefslogtreecommitdiff
path: root/ATRI/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'ATRI/test.py')
-rw-r--r--ATRI/test.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/ATRI/test.py b/ATRI/test.py
new file mode 100644
index 0000000..cb15c44
--- /dev/null
+++ b/ATRI/test.py
@@ -0,0 +1,10 @@
+a = [
+ {'a': 1},
+ {'a': 2}
+]
+
+from random import randint
+
+print(a)
+print(a[randint(0, len(a)) - 1])
+print(len(a)) \ No newline at end of file