помогите пж пж пж пж пж пж
Приложения:

znhel:
Так все правильно там написан, що переробити?
Ответы на вопрос
Ответил znhel
1
Відповідь:
import random
def func()->list:
"""
The function create list with 10 elements random numbers
:return: - list with 10 elements random numbers
"""
list_output = list()
for i in range(10):
el = random.randint(1, 100)
list_output.append(el)
return list_output
print(func())
Новые вопросы