This repository has been archived on 2025-10-25. You can view files and clone it, but cannot push or open issues or pull requests.
Files
python_it_top/02-10/practica.py
it-top 2e56fd2fe3 add
2025-10-02 12:31:43 +05:00

5 lines
127 B
Python

import random
list_sort_buble = []
for _ in range(10):
list_sort_buble.append(random.randint(0,100))
print(list_sort_buble)