Entrée python avec l'espace
In []:
list(map(int, input().split()))
Input:
1 2 3 4 5
Out[]:
[1, 2, 3, 4, 5]
AntMan
In []:
list(map(int, input().split()))
Input:
1 2 3 4 5
Out[]:
[1, 2, 3, 4, 5]