Как сделать ввод массива в Python в одной линии
arr = list(map(int, input().split()))
Yucky Yak
arr = list(map(int, input().split()))