5 lines
127 B
Python
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)
|