This commit is contained in:
it-top
2025-10-02 12:31:43 +05:00
parent 000bedddd7
commit 2e56fd2fe3

5
02-10/practica.py Normal file
View File

@@ -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)