So nimmt man n Platz getrennte Eingabe in Python -Code -Antworten

N = 5
num = [int(i) for i in input().split()][:N]
print(num)

# Output: [1, 2, 3, 4, 5]
Excited Earthworm