From 2e56fd2fe39e8cc4e74420605af3505115e15b3a Mon Sep 17 00:00:00 2001 From: it-top Date: Thu, 2 Oct 2025 12:31:43 +0500 Subject: [PATCH] add --- 02-10/practica.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 02-10/practica.py diff --git a/02-10/practica.py b/02-10/practica.py new file mode 100644 index 0000000..b652679 --- /dev/null +++ b/02-10/practica.py @@ -0,0 +1,5 @@ +import random +list_sort_buble = [] +for _ in range(10): + list_sort_buble.append(random.randint(0,100)) +print(list_sort_buble) \ No newline at end of file