Uzyskaj wiele danych wejściowych w Pythonie za pomocą mapy

x = list(map(int, input("Enter multiple values: ").split()))  
print("List of students: ", x)  
Mooventhan