Holen Sie sich mit MAP mehrere Eingänge in Python in Python

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